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
|
@import url('/css/main-root.css');
@media (prefers-color-scheme: dark) {
:root {
--dark-theme-check: 1;
}
}
@media (prefers-color-scheme: light) {
:root {
--dark-theme-check: 0;
}
}
@media (max-width: 600px) {
html {
font-size: 1em;
}
}
@media (min-width: 601px) {
html {
font-size: 1em;
}
}
.dark-mode-container {
float: right;
}
::selection {
background-color: var(--contrast-color);
color: hsl(0, 0%, var(--background-lightness));
}
body {
color: var(--foreground-accent-color);
background-color: var(--background-theme-color);
transition: 250ms;
}
p {
color: var(--foreground-theme-color);
font-size: 1rem;
}
hr {
border-color: var(--foreground-accent-color);
}
code {
color: var(--foreground-accent-color);
border-color: var(--foreground-accent-color);
border-width: 1px;
border-style: solid;
padding: 0.1rem 0.2rem;
background-color: hsla(0, 0%, 0%, 50%);
}
pre code {
border-style: none;
padding: 0;
background: none;
color: inherit;
tab-size: 4;
}
pre {
border-color: var(--foreground-accent-color);
border-width: 1px;
border-style: solid;
padding: 5px;
background-color: hsla(0, 0%, 0%, 0%);
font-size: 1rem;
white-space: pre;
overflow-x: auto;
max-width: 100%;
text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
math {
color: var(--foreground-accent-color);
font-size: 1rem;
overflow-x: auto;
max-width: 100%;
text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
math mi {
font-style: italic;
}
nav {
clear: both;
}
nav.nav-footer {
color: var(--foreground-accent-color);
text-align: center;
clear: both;
}
ul {
text-indent: -2rem;
font-size: 1.25rem;
font-weight: bold;
}
li {
text-indent: 0rem;
font-size: 1rem;
font-weight: normal;
}
li.pages-iter-item {
--instance-hue: var(--accent-hue);
color: hsl(
var(--instance-hue),
var(--accent-saturation),
var(--contrast-lightness)
);
}
li:not(.pages-iter-item) {
color: var(--foreground-theme-color);
}
li:not(.pages-iter-item)::marker {
color: var(--foreground-accent-color);
}
a {
color: var(--contrast-color);
}
a:visited {
color: hsl(calc(var(--contrast-hue) + 60), 100%, var(--contrast-lightness))
}
a:hover {
color: hsl(calc(var(--contrast-hue) - 150), 100%, var(--contrast-lightness))
}
img {
float: right;
max-width: 50%;
width: auto;
}
|