blob: 5912f27711aca66f28594fc93cdd6ccba61e48af (
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
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
|
body {
color: black;
background-color: #ffe;
margin-left: 15px;
margin-right: 5px;
font-family: serif;
}
h1, h2, h3 {
font-weight: bold;
color: #008;
}
h1 {
font-size: xx-large;
margin-top: 12px;
margin-bottom: 6px;
}
#pagehead {
margin-left: 130px;
margin-bottom: 20px;
}
p#logo {
position: absolute;
left: 15px;
top: 0px;
margin-top: 0px;
}
h2 {
font-size: x-large;
margin-top: 12px;
margin-bottom: 6px;
}
h3 {
margin-top: 9px;
margin-bottom: 3px;
}
p {
margin-top: 6px;
margin-bottom: 3px;
max-width: 60em;
}
.fineprint {
font-size: x-small;
}
blockquote {
max-width: 40em;
}
table {
border-width: 0px;
margin-left: 0px;
margin-right: 6px;
}
table#prereq {
border: 2px solid #448;
margin-top: 9px;
margin-bottom: 9px;
}
table#prereq th {
text-align: left;
}
td, th {
padding-left: 12px;
padding-right: 12px;
max-width: 55em;
}
tfoot {
font-style: italic;
font-size: small;
}
th, tfoot td {
background-color: #ffc;
}
ul, dl {
margin-top: 9px;
margin-bottom: 9px;
max-width: 60em;
}
ul li {
margin-top: 3px;
margin-bottom: 3px;
margin-left: -6px
}
pre {
margin-top: 3px;
margin-bottom: 3px;
margin-left: 0px;
}
img {
margin: 20px;
float: right;
clear: right;
}
|