blob: ab653e4e405c950a5297d45abbe59822315e93e4 (
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
|
#main {
margin-left: auto;
margin-right: auto;
max-width: 55em;
text-align: justify;
}
h2 {
font-family: monospace;
margin-bottom: 2em;
background-color: #b2c9db;
padding: 7px;
border-radius: 7px;
}
ol {
list-style: none;
margin-bottom: 4em;
}
li a {
color: black;
}
li.header {
margin-top: 1em;
margin-bottom: 0.3em;
font-weight: bold;
}
div.decl p:first-child {
margin-top: 2.5em;
}
div.decl p:first-child .first-word {
font-weight: bold;
font-family: monospace;
}
.sectionpreamble {
margin-top: 5em;
}
.sectionpreamble p:first-child {
font-weight: bold;
font-size: 1.5em;
}
.section pre {
background-color: #b2c9db;
padding: 5px;
border-radius: 5px;
}
td {
padding: 2px;
}
tr:nth-child(even) {
background-color: #eee;
}
tr.header td {
font-weight: bold;
padding-top: 1em;
padding-bottom: 0.5em;
}
|