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
|
/* -*- css-indent-offset: 8; tab-width: 8 -*- */
body {
width: 98%;
max-width: 1024px;
margin-left: auto;
margin-right: auto;
font-family: sans-serif;
}
blockquote {
border-left: solid .4em #0000AA;
margin-left: .25em;
padding-left: 1.25em;
font-style: italic;
}
footer {
text-align: center;
font-size: 70%;
color: #333333;
}
/* little hack to make nested lists not take up extra vertical space */
li > p:first-child { margin-top: 0; }
li p + ul { margin-top: -1em; }
/* code elements */
kbd, code, samp, tt, pre {
background: #DDDDFF;
white-space: pre;
}
@media print {
kbd, code, samp, tt, pre {
white-space: pre-wrap;
}
}
var {
color: #008800;
}
pre {
margin: auto 2em;
padding: .5em;
overflow: auto;
border: solid 1px #AAAAAA;
}
pre hr {
height: 0px;
border: none;
border-top: solid 1px #AAAAAA;
}
/* table elements */
table, td, th {
border-collapse: collapse;
border: solid 1px #AAAAAA;
}
table {
margin-left: auto;
margin-right: auto;
}
td, th {
padding-left: .5em;
padding-right: .5em;
}
th {
background: #F5F5F5;
}
table > caption {
text-align: left;
}
table pre {
margin: auto;
}
/* heading elements */
h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
}
h1 {
text-align: center;
background-color: #DDDDFF;
}
caption > h1 { /* don't make the headings in captions huge */
font-size: 100%;
}
/* hyperlink elements */
a {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
|