blob: 969e73c2676032441f65569394c94017a84bb6ff (
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
body {
color: #333;
font-family: "PT Serif", serif
}
nav {
position: fixed;
left: 5%;
top: 10%;
}
nav a {
text-decoration: none;
}
article {
position: absolute;
width: 50%;
left: 20%;
padding: 5%;
font-size: 11pt;
text-align: justify;
}
h1.title {
text-align: center;
font-size: 18pt;
}
h1.title code {
font-size: 18pt;
}
h2 {
text-align: center;
font-size: 14pt;
}
h2.meta {
font-size: 11pt;
font-weight: normal;
font-style: italic;
}
h2.toc {
text-align: left;
}
h3 {
font-size: 12pt;
}
code {
font-family: 'Courier', monospace;
font-size: 10.5pt;
}
pre {
margin: 0 2em;
}
pre code {
font-size: 10pt;
}
blockquote {
margin: 0 2em;
font-style: italic;
}
div.footnotes {
font-size: 10pt;
}
div.footnotes code {
font-size: 9.5pt;
}
img {
display: block;
max-width: 100%;
max-height: 100%;
margin-left: auto;
margin-right: auto;
}
.figure .caption {
text-align: center;
font-size: 10pt;
}
a {
color: #333;
}
footer {
text-align: right;
}
footer .cc-icon {
width: 16px;
height: 16px;
padding: 0 4px;
display: inline-block;
background-image: url("/img/cc-16.png");
background-repeat: no-repeat;
background-position: center;
background-size: 16px;
vertical-align: middle;
font-size: 0;
}
footer .feed-icon {
width: 16px;
height: 16px;
display: inline-block;
background-image: url("/img/feed-14.png");
background-repeat: no-repeat;
background-position: center;
background-size: 14px;
vertical-align: middle;
font-size: 0;
}
div.indextoc ul {
list-style-type: none;
padding-left: 2em;
}
div.indextoc ul li time.tocdate {
float: left;
width: 5em;
}
|