2022-05-31 21:53:19 +00:00
|
|
|
body {
|
2022-06-15 13:30:18 +00:00
|
|
|
margin: 1rem;
|
2022-05-31 21:53:19 +00:00
|
|
|
padding: 0;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
font-family: system-ui, sans-serif;
|
2022-06-06 21:14:50 +00:00
|
|
|
font-size: 1rem;
|
2022-06-14 16:21:09 +00:00
|
|
|
line-height: 1.5em;
|
2022-06-06 21:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li ul li::before {
|
|
|
|
content: ' > ';
|
2022-05-31 21:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
2022-06-06 21:14:50 +00:00
|
|
|
font-size: 1.5rem;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.3rem;
|
2022-05-31 21:53:19 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 13:08:50 +00:00
|
|
|
header, main > *:not(table, pre), footer {
|
2022-06-06 21:14:50 +00:00
|
|
|
max-width: 40rem;
|
2022-06-16 13:08:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header, main > *, footer {
|
2022-05-31 21:53:19 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
line-height: var(--font-size) + 6%;
|
|
|
|
font-size: var(--font-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breakable {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: var(--foreground-color);
|
|
|
|
color: var(--background-color);
|
|
|
|
}
|
2022-06-06 21:14:50 +00:00
|
|
|
|
|
|
|
abbr {
|
|
|
|
text-decoration: underline 0.2em dotted;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: underline var(--svc-color) 0.2em;
|
|
|
|
color: var(--foreground-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline var(--svc-color) 0.25em;
|
|
|
|
color: var(--foreground-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:active {
|
|
|
|
text-decoration: underline var(--svc-color) 0.35em;
|
|
|
|
color: var(--foreground-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
dt a {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|