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
|
body { background-color: #f6f6f6; }
h1,h2,h3,h4 { font-family: sans-serif; color: #303030;
text-shadow: rgba(0,0,0,0.25) 2px 2px 5px;
}
h1 { text-align: center; }
h2 { border-bottom: 2px solid #303030; clear: right; }
div.mainlinks { font-size: 140%; }
div.center { text-align: center; }
div.news { font-size: small; }
table { border-collapse: collapse; }
table.news td {
background: inherit;
border: 0;
vertical-align: baseline;
padding: 0.25ex 0.5ex;
}
table.news td:nth-child(1) {
/* Don't want the hyphens in dates (2012-06-29) to cause line breaks */
white-space: nowrap;
}
th,td { border: 1px solid #333; }
td { background: white; }
th { background: #9df; }
h1 img { float: right; border: 0; }
h1 img.nofloat { float: none; }
img.right { float: right; }
ol.languages {
column-width: 12em;
-moz-column-width: 12em;
}
.grow {
max-width: 75%;
animation-name: grow;
animation-duration: 2s;
animation-timing-function: ease-in-out;
-webkit-animation-name: grow;
-webkit-animation-duration: 2s;
-webkit-animation-timing-function: ease-in-out;
}
@keyframes grow {
from,50% { opacity: 0; transform: scale(0.1,0.1); }
80% { opacity: 1; transform: scale(1.1,1.1); }
to { transform: scale(1.0,1.0); }
}
@-webkit-keyframes grow {
from,50% { opacity: 0; -webkit-transform: scale(0.1,0.1); }
80% { opacity: 1; -webkit-transform: scale(1.1,1.1); }
to { -webkit-transform: scale(1.0,1.0); }
}
|