forked from hoodiehq/hoodie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (45 loc) · 864 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
background-color:#FCFCFC;
animation-name: graytocolorimg;
animation-duration: 2s;
}
/*this sets the styling for all h1 elements found in the html*/
h1 {
font-family:Helvetica, Arial, sans-serif;
color:#e94e1b;/*orange color*/
text-align:center;
letter-spacing:2px;
font-size:39px;
}
.info {
margin-left:10%;
margin-right:10%;
background-color: white;
border-radius:25px;
padding: 20px;
border: 1px solid lightgray;
font-family: sans-serif;
}
#doggy {
text-align:center;
}
/*this sets the styling for all h2 elements found in the html*/
h2 {
color:#e94e1b;/*orange color*/
letter-spacing: 2px;
}
code {
background-color:#ECECEC;
padding:3px;
}
a {
color:orange;
text-decoration:none;
}
ol {
line-height:3em;
}
@keyframes graytocolorimg {
from {filter: grayscale(100%);}
to {filter: grayscale(0%);}
}