-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocinfo.html
92 lines (75 loc) · 1.47 KB
/
docinfo.html
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
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
:root {
--background-color: #eee;
--border-color: #ddd;
}
h1,
h2,
h3,
h4,
h5,
h6,
#toctitle {
color: black;
text-align: left;
font-weight: 600;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif;
background-color: var(--background-color);
}
code {
font-family: 'JetBrains Mono', monospace;
font-variant-ligatures: contextual;
}
pre>code {
font-size: 0.9375em;
}
pre {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9375em;
}
#header,
#content {
background-color: white;
max-width: 902px;
border-left: 1px solid var(--border-color);
border-right: 1px solid var(--border-color);
padding-left: 32px;
padding-right: 32px;
}
#header {
border-top: 1px solid var(--border-color);
margin-top: 32px;
}
#content {
margin-top: 0px;
padding-top: 32px;
border-bottom: 1px solid var(--border-color);
}
a {
text-decoration: none;
}
#footer {
background-color: inherit;
}
#footer-text {
color: inherit;
}
.admonitionblock>table td.icon .title {
font-weight: normal;
}
</style>