2020-12-20 00:40:16 +00:00
|
|
|
:root {
|
|
|
|
color-scheme: light dark;
|
|
|
|
}
|
|
|
|
|
2020-12-17 04:01:44 +00:00
|
|
|
body {
|
|
|
|
font-family: ui-serif;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
font-family: ui-monospace;
|
|
|
|
overflow-wrap: normal;
|
|
|
|
overflow-x: auto;
|
|
|
|
tab-size: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
line-height: 1;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.link {
|
|
|
|
display: block;
|
2020-12-17 23:26:32 +00:00
|
|
|
margin: 4px 0;
|
2020-12-17 04:01:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: rgb(0, 122, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2020-12-17 23:26:32 +00:00
|
|
|
.symbol {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
width: 1.25em;
|
|
|
|
height: 1.25em;
|
|
|
|
margin-right: 0.25em;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-12-17 04:01:44 +00:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
a {
|
|
|
|
color: rgb(10, 132, 255);
|
|
|
|
}
|
2020-12-17 23:26:32 +00:00
|
|
|
|
|
|
|
.symbol {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
2020-12-17 04:01:44 +00:00
|
|
|
}
|