33 lines
535 B
CSS
33 lines
535 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Gotu&display=swap');
|
|
|
|
body, main {
|
|
font-family: "Gentium Plus", serif;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: "Gotu", sans-serif;
|
|
}
|
|
|
|
blockquote {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.spoiler {
|
|
filter: blur(1rem);
|
|
}
|
|
|
|
.spoiler:hover {
|
|
filter: none;
|
|
}
|
|
|
|
.spoiler-warn::before {
|
|
vertical-align: top;
|
|
content: '(spoiler)';
|
|
font-size: 50%;
|
|
color: red;
|
|
}
|
|
ul {
|
|
list-style-type: revert;
|
|
padding-left: 2rem;
|
|
}
|