blob: b8d562c6f49e413f212238db2fe6d047d21b2a15 (
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
102
103
104
|
header, footer {
padding:1em 0 1em 0;
}
header {
border-bottom:2px solid #f0f0f0;
}
footer {
border-top:2px solid #f0f0f0;
}
footer ul.tags {
list-style:none outside none;
margin:0;
padding:0;
display:inline;
}
ul.indexTagList {
list-style:none outside none;
margin-left:0;
padding-left:0;
}
ul.indexTagList li {
margin-left:0;
padding-left:0;
}
ul.indexTagList ul {
list-style:disc outside none;
}
footer ul.tags:before { content:" — "; }
footer ul.tags li {
margin:0;
padding:0;
display:inline;
}
footer ul.tags li:after { content:", "; }
footer ul.tags li:last-child:after { content: ""; }
header h1, header h2 {
margin:0;
}
header h2.subtitle {
font-size:1em;
font-weight:normal;
font-style:italic;
}
body {
margin:auto;
padding-right:1em;
padding-left:1em;
font:normal 1em monospace;
max-width:90em;
text-align:left;
}
a {
color:inherit;
}
p {
margin-top:1em;
margin-bottom:0;
}
p:last-of-type {
margin-bottom:1em;
}
p + p {
text-indent:1.5em;
margin-top:0.25em;
}
footer p, footer p:last-of-type {
margin:0;
padding:0;
text-indent:0;
display:inline;
}
p .sourceCode, p code {
border-bottom:2px solid #f0f0f0;
margin-bottom:-2px;
}
div.sourceCode {
padding-left:1.5em;
border-left:2px solid #f0f0f0;
margin-left:-2px;
}
pre code {
white-space:pre-wrap;
}
|