-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
71 lines (71 loc) · 1.09 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body{
font-family: Helvetica, Arial, sans-serif;
background:#F4EAD3;
color: #9E9CA0;
font-size:18px;
line-height:20px;
position:relative;
}
#wrapper{
margin:10px 15px 100px 15px;
padding-top:50px;
width:1050px;
position:relative;
}
#did-you-know{
font-size:40px;
line-height:60px;
}
strong{
color:#8A4615;
background:#DDC083;
padding:1px 3px;
font-weight:normal;
}
a, a:hover, a:active, a:visited{
color:#20659B;
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
#resources ul{
margin-top:50px;
}
#resources ul li{
margin:0 0 15px 0;
}
#copyleft{
position:absolute;
position:fixed;
width:100%;
top:0;
right:0;
font-size:11px;
text-align:right;
padding:5px;
background:#F4EAD3;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#copyleft p{
color:#000;
}
@-webkit-keyframes pulse {
from {
opacity: 0.5;
}
50% {
opacity: 1.0;
}
to {
opacity: 0.55;
}
}
span.pulse {
-webkit-animation-name: pulse;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 30;
}