blob: 6c902674cb7b8798b8009ee5bf6d2f6e5395b7d8 (
plain)
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
|
body {
font-family: monospace;
color: #333;
background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
img, h1, h2 {
vertical-align: middle;
}
table thead td {
font-weight: bold;
}
table td {
padding: 0 0.4em;
}
#content table tr:hover td {
background-color: #eee;
}
h1, h2, h3, h4, h5, h6 {
font-size: 1em;
}
.desc {
font-size: 100%;
color: #777;
}
hr {
color: #777;
background-color: #777;
border: 0;
border-top: 1px solid #777;
}
|