1
+ : root {
2
+ --pageBg : # ebe4cc ;
3
+ --textDefault : # 1c1c1c ;
4
+ --linkDeafult : # 188d8f ;
5
+ --navBg : # 444 ;
6
+ --navBorder : # 555 ;
7
+ --navBgHover : # 111 ;
8
+ --borderMuted : # b7b79a ;
9
+ }
10
+
11
+ @media (prefers-color-scheme : dark) {
12
+ : root {
13
+ --pageBg : rgb (13 , 17 , 23 );
14
+ --textDefault : rgb (201 , 209 , 217 );
15
+ --linkDefault : # 58a6ff ;
16
+ --navBg : # 1a222f ;
17
+ --navBorder : # 1c2532 ;
18
+ --navBgHover : # 212b3b ;
19
+ --borderMuted : # 21262d ;
20
+ }
21
+ }
22
+
1
23
body , html {
2
24
font-family : 'Libre Franklin' , sans-serif;
3
- background : # ebe4cc ;
4
- color : # 1c1c1c ;
25
+ background : var (--pageBg );
26
+ color : var (--textDefault );
27
+ }
28
+
29
+ body {
30
+ line-height : 1.5 ;
31
+ word-wrap : break-word;
5
32
}
33
+
6
34
pre , code {
7
35
font-family : 'Inconsolata' , monospace;
8
36
}
9
37
div .highlight {
10
38
padding : 0.3em 1em ;
11
39
}
12
40
a {
13
- color : # 188d8f ;
41
+ color : var ( --linkDefault ) ;
14
42
}
15
43
h1 a {
16
44
text-decoration : none;
@@ -20,17 +48,16 @@ ul li {
20
48
}
21
49
nav {
22
50
width : 100% ;
23
- background : black;
24
- border-top : 1px solid # 555 ;
25
- border-bottom : 1px solid # 555 ;
51
+ border-top : 1px solid var (--navBorder );
52
+ border-bottom : 1px solid var (--navBorder );
26
53
}
27
54
28
55
nav ul {
29
56
list-style-type : none;
30
57
margin : 0 ;
31
58
padding : 0 ;
32
59
overflow : hidden;
33
- background : # 444 ;
60
+ background : var ( --navBg ) ;
34
61
line-height : 1.15 ;
35
62
}
36
63
@@ -47,22 +74,9 @@ nav ul li a {
47
74
}
48
75
49
76
nav ul li a : hover {
50
- background-color : # 111 ;
77
+ background-color : var ( --navBgHover ) ;
51
78
}
52
79
53
-
54
- .headerbottom {
55
- position : absolute;
56
- bottom : 0 ;
57
- left : 0 ;
58
- right : 0 ;
59
- width : 100% ;
60
- }
61
- # contentwrap {
62
- max-width : 740px ;
63
- margin-left : auto;
64
- margin-right : auto;
65
- }
66
80
.fixednav {
67
81
position : fixed;
68
82
top : 0 ;
@@ -132,7 +146,71 @@ article {
132
146
.next_page , .prev_page , .different_page {
133
147
text-decoration : none;
134
148
}
135
- @media screen and (max-width : 520px ) {
149
+
150
+ # contentwrap {
151
+ margin-left : auto;
152
+ margin-right : auto;
153
+ }
154
+
155
+ ul {
156
+ list-style-type : square;
157
+ }
158
+
159
+ h1 {
160
+ margin : 0.67em 0 ;
161
+ padding-bottom : 0.3em ;
162
+ font-size : 2em ;
163
+ border-bottom : 1px solid var (--borderMuted );
164
+ }
165
+
166
+ h2 {
167
+ font-weight : 600 ;
168
+ padding-bottom : 0.3em ;
169
+ font-size : 1.5em ;
170
+ border-bottom : 1px solid var (--borderMuted );
171
+ }
172
+
173
+ code {
174
+ padding : 0.2em 0.4em ;
175
+ margin : 0 ;
176
+ font-size : 85% ;
177
+ background-color : rgb (175 184 193 / 20% );
178
+ border-radius : 6px ;
179
+ font-family : ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
180
+ }
181
+
182
+ pre .highlight code {
183
+ padding : inherit;
184
+ margin : inherit;
185
+ font-size : inherit;
186
+ background-color : inherit;
187
+ border-radius : inherit;
188
+ font-family : inherit;
189
+ }
190
+
191
+ .noBorder {
192
+ border : none;
193
+ }
194
+
195
+ .noMargin {
196
+ margin : 0 ;
197
+ }
198
+
199
+ @media screen and (min-width : 980px ) {
200
+ .headerbottom {
201
+ position : absolute;
202
+ bottom : 0 ;
203
+ left : 0 ;
204
+ right : 0 ;
205
+ width : 100% ;
206
+ }
207
+
208
+ # contentwrap {
209
+ max-width : 980px ;
210
+ }
211
+ }
212
+
213
+ @media screen and (max-width : 980px ) {
136
214
nav ul li {
137
215
float : none;
138
216
display : none;
@@ -182,5 +260,74 @@ article {
182
260
.responsivepad {
183
261
display : none;
184
262
}
263
+
264
+ # contentwrap p , # contentwrap h1 , # contentwrap h2 , # contentwrap h3 , # contentwrap h4 {
265
+ padding-left : 6px ;
266
+ padding-right : 6px ;
267
+ }
268
+
269
+ .github-icon {
270
+ -webkit-mask-image : none;
271
+ }
272
+
273
+ div .highlight {
274
+ padding : 1px 6px 1px 6px ;
275
+ }
276
+
277
+ # contentwrap h3 {
278
+ margin-bottom : 8px ;
279
+ }
280
+
281
+ ul {
282
+ padding-left : 30px ;
283
+ margin-top : 0 ;
284
+ }
285
+
286
+ .site-title {
287
+ display : flex;
288
+ justify-content : center;
289
+ }
185
290
}
186
291
292
+ @media (prefers-color-scheme : light) {
293
+ code {
294
+ color : # 24292f ;
295
+ }
296
+ }
297
+
298
+ @media (prefers-color-scheme : dark) {
299
+ ::-webkit-scrollbar {
300
+ width : 15px ;
301
+ }
302
+
303
+ ::-webkit-scrollbar-track {
304
+ background : # 202020 ;
305
+ border-left : 1px solid # 2c2c2c ;
306
+ }
307
+
308
+ ::-webkit-scrollbar-thumb {
309
+ background : # 3e3e3e ;
310
+ border : solid 3px # 202020 ;
311
+ border-radius : 7px ;
312
+ }
313
+
314
+ ::-webkit-scrollbar-thumb : hover {
315
+ background : # 4F4F4F ;
316
+ }
317
+
318
+ hr {
319
+ box-sizing : content-box;
320
+ overflow : hidden;
321
+ background : transparent;
322
+ border-bottom : 1px solid # 21262d ;
323
+ height : 0.25em ;
324
+ padding : 0 ;
325
+ margin : 24px 0 ;
326
+ background-color : # 30363d ;
327
+ border : 0 ;
328
+ }
329
+
330
+ code {
331
+ background-color : rgba (110 , 118 , 129 , 0.4 );
332
+ }
333
+ }
0 commit comments