blob: 337e1c7e5c2c6f9493ce4997215b447e538f9685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.spoiler, .spoiler a {
color: black;
background-color: black;
}
.spoiler:hover, .spoiler:hover a {
color: gray;
}
/* https://flaviocopes.com/css-system-fonts */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
}
/* https://stackoverflow.com/a/40032327 */
pre {
white-space: pre-wrap;
word-wrap: break-word;
text-align: justify;
}
|