-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
144 lines (140 loc) · 3.15 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
margin: 0 2em;
padding: 0;
background-color: white;
color: #333;
font-family: sans-serif;
background-image: url('bg.png');
}
h1 {
text-align: center;
margin: 0.2em 0 0;
font-size: 600%;
font-family: serif;
font-weight: 500;
}
h1 .o {
color: #cfcf00;
-webkit-animation: fadeblack 16s infinite linear;
-moz-animation: fadeblack 16s infinite linear;
-ms-animation: fadeblack 16s infinite linear;
-o-animation: fadeblack 16s infinite linear;
}
h1 .d {
color: black;
-webkit-animation: fadeyellow 16s infinite linear;
-moz-animation: fadeyellow 16s infinite linear;
-ms-animation: fadeyellow 16s infinite linear;
-o-animation: fadeyellow 16s infinite linear;
}
@-webkit-keyframes fadeblack {
0% { color: #cfcf00; } 50% { color: black; } 100% { color: #cfcf00; }
}
@-moz-keyframes fadeblack {
0% { color: #cfcf00; } 50% { color: black; } 100% { color: #cfcf00; }
}
@-ms-keyframes fadeblack {
0% { color: #cfcf00; } 50% { color: black; } 100% { color: #cfcf00; }
}
@-o-keyframes fadeblack {
0% { color: #cfcf00; } 50% { color: black; } 100% { color: #cfcf00; }
}
@keyframes fadeblack {
0% { color: #cfcf00; } 50% { color: black; } 100% { color: #cfcf00; }
}
@-webkit-keyframes fadeyellow {
0% { color: black; } 50% { color: #cfcf00; } 100% { color: black; }
}
@-moz-keyframes fadeyellow {
0% { color: black; } 50% { color: #cfcf00; } 100% { color: black; }
}
@-ms-keyframes fadeyellow {
0% { color: black; } 50% { color: #cfcf00; } 100% { color: black; }
}
@-o-keyframes fadeyellow {
0% { color: black; } 50% { color: #cfcf00; } 100% { color: black; }
}
@keyframes fadeyellow {
0% { color: black; } 50% { color: #cfcf00; } 100% { color: black; }
}
#main {
text-align: center;
margin: 0 auto;
}
#tagline {
margin: 0 0 4em;
}
article {
vertical-align: top;
text-align: left;
width: 400px;
min-height: 300px;
display: inline-block;
margin: 1em 1.5em;
padding: 0.5em 0;
border-radius: 3px;
box-shadow: -0.05em -0.05em 0.5em rgba(0, 0, 0, 0.2);
background-color: white;
}
article iframe {
/* Twitter */
max-height: 30em;
}
article h2 {
text-align: center;
font-weight: bold;
font-size: 100%;
border-bottom: solid 1px #cfcf00;
margin: 1em 0;
padding: 0;
}
article img {
max-width: 400px;
text-align: center;
border: none;
padding: 0;
margin: 4px 0;
}
article p, article ul {
font-size: 90%;
padding:0.3em 0.6em;
}
article ul {
margin: 0.5em 0;
padding-left: 2em;
}
article ul li {
margin: 0.5em 0;
}
footer {
font-size: 75%;
color: #ccc;
margin: 4em auto 0;
text-align: center;
max-width: 50em;
transition-property: color;
transition-duration: 0.3s;
}
footer a {
color: #bbe;
transition-property: color;
transition-duration: 0.3s;
}
footer:hover {
color: #333;
transition-property: color;
transition-duration: 1s;
}
footer:hover a {
color: blue;
transition-property: color;
transition-duration: 1s;
}
.events .title {
font-weight: bold;
color: #333;
}
.events .date {
color: #666;
font-style: italic;
}