-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (37 loc) · 833 Bytes
/
style.css
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
/* fonts */
/* LXGW Wenkai */
@import url('https://cdn.jsdelivr.net/npm/[email protected]/style.css');
/* Fira code */
@import url('https://cdn.jsdelivr.net/npm/[email protected]/distr/fira_code.css');
/* 思源宋体 */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+SC:200,300,400,500,600,700,900');
/* Dark theme */
:root {
color-scheme: light dark;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Noto Serif SC', serif;
}
p, li, div.csl-entry {
font-family: 'LXGW Wenkai Lite', serif;
}
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
font-family: 'Fira Code', monospace;
}
pre {
word-break: normal;
word-wrap: normal;
font-family: 'Fira Code', monospace;
}
pre code {
white-space: inherit;
}
.mjx-chtml {
overflow-x: auto;
overflow-y: hidden;
}