Files

51 lines
656 B
CSS
Raw Permalink Normal View History

2024-01-24 09:27:21 -08:00
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
2021-10-20 18:09:27 -07:00
2023-01-22 00:57:45 -08:00
body {
2024-01-06 12:08:19 -08:00
font-family: "Gentium Plus", serif;
2021-10-20 18:09:27 -07:00
}
h1, h2 {
font-family: "Gotu", sans-serif;
}
blockquote {
overflow-wrap: break-word;
}
2022-05-09 18:28:04 -07:00
2022-05-09 18:33:17 -07:00
ul {
2022-05-09 18:28:04 -07:00
list-style-type: disc;
2022-05-09 18:34:41 -07:00
margin-left: 2rem;
2022-05-09 18:28:04 -07:00
}
2022-05-09 18:39:19 -07:00
ul + p {
margin-top: 1rem;
}
2022-05-09 19:06:53 -07:00
dt {
font-size: 90%;
font-style: italic;
line-height: 1.2;
text-decoration: underline;
color: #555;
}
dt:after {
content: ':'
}
dd {
margin-left: 1rem;
margin-bottom: 1rem;
}
2022-10-23 14:47:46 -07:00
figure {
margin: 1rem auto;
max-width: 90%;
}
figcaption {
text-align: center;
opacity: 0.9;
font-size: 50%;
}