2022-01-14 07:02:31 +00:00
|
|
|
html {
|
|
|
|
background-color: #121212;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: rgb(255, 167, 248);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
font-size: 1.125em;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
font-family: "Courier New", Courier, monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-list {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-list li {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
padding-inline-end: 0.5ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-list li + li {
|
2022-03-08 04:09:02 +00:00
|
|
|
border-inline-start: 2px solid white;
|
2022-01-14 07:02:31 +00:00
|
|
|
padding-inline-start: 0.5ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
abbr {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-03-08 04:09:02 +00:00
|
|
|
|
|
|
|
.lavender-webring-container {
|
|
|
|
font-family: "Inter", sans-serif !important;
|
|
|
|
}
|
2022-07-26 03:59:58 +00:00
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
text-align: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
form button {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
2022-07-26 04:11:20 +00:00
|
|
|
|
2022-07-26 04:12:09 +00:00
|
|
|
table pre.spaced {
|
2022-07-26 04:11:20 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
2022-07-26 04:12:09 +00:00
|
|
|
table td.clipped {
|
2022-07-26 04:11:20 +00:00
|
|
|
overflow-x: clip;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 30ch;
|
|
|
|
}
|