blob: 62f72fae21b87b590413b74ff0610f280d96ebc2 (
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
line-height: 1.4;
margin: 0 auto;
max-width: 1140px;
padding: 12px;
}
h1 {
line-height: 1.2;
font-weight: normal;
margin-bottom: 0;
}
h1 + p {
margin-top: 0;
}
h2 {
border-bottom: 1px solid #ddd;
font-weight: normal;
}
h3 {
border-bottom: 1px solid #ddd;
}
h2,h3,h4,h5,h6 {
margin: 2.5rem 0 0;
}
.posts {
padding: 0 0 0 18px;
}
.posts li {
margin: 0 0 10px;
}
.posts li span {
display: none;
}
.alert {
border: 1px solid;
margin: 10px 0;
padding: 8px;
}
.alert span > b {
display: block;
border-bottom: 1px solid;
margin-bottom: 10px;
}
.alert.note {
background: aliceblue;
border-color: darkslateblue;
color: darkslateblue;
}
.alert.warning {
background: lightgoldenrodyellow;
border-color: darkgoldenrod;
color: darkgoldenrod;
}
p code, ul code, ol code, blockquote code {
background: #f1f1f1;
padding: 2px;
}
#markdown-toc {
background: #f8f9fa;
padding: 10px 10px 20px 40px;
position: relative;
}
#markdown-toc::before {
border-bottom: 1px solid #ddd;
content: "Table of Contents";
display: block;
font-size: 24px;
margin: 0 0 10px -30px;
}
pre {
background: #f1f1f1;
overflow: auto;
padding: 8px;
}
blockquote {
color: brown;
font-family: serif;
font-style: italic;
font-size: 110%;
}
img {
height: auto;
max-width: 100%;
}
table {
border-collapse: collapse;
margin: 2em 0;
text-align: left;
width: 100%;
}
table th, table td {
padding: 4px;
}
table tr:nth-of-type(even) {
background: #f1f1f1;
}
figure {
margin: 3rem;
}
figure img {
border: 1px solid;
display: block;
margin: 0 auto;
padding: 4px;
}
figure figcaption {
font-size: 90%;
padding: 8px;
text-align: center;
}
.footnotes {
border-top: 1px solid;
font-size: 90%;
margin: 20px 0 10px;
padding: 10px 0;
}
footer {
margin: 2rem 0 0;
}
footer nav ul {
list-style: none;
padding: 0;
}
footer nav ul li {
display: inline-block;
margin: 0 10px 10px 0;
}
@media(max-width:600px) {
figure {
margin: 3rem 1rem;
}
}
@media(prefers-color-scheme: dark) {
body {
background: #2d2d2d;
}
h2, #markdown-toc::before {
border-color: #aaa;
}
code, pre {
background: #000 !important;
}
blockquote {
color: lightyellow;
}
table tr:nth-of-type(even) {
background: #000;
}
.alert code {
background: none !important;
}
#markdown-toc {
background: #000;
}
}
|