work on splitting up extras css; start handling build metadata; start building sitemaps

This commit is contained in:
2023-05-19 00:00:15 -07:00
parent bf390c324f
commit 5689c64c4e
21 changed files with 1015 additions and 495 deletions

View File

@@ -0,0 +1,54 @@
:root {
font-size: 14px;
}
@media (max-width: 400px) {
:root {
font-size: 12px;
}
}
@media (min-width: 1600px) or (min-height: 1600px) {
:root {
font-size: calc(12px + 80vw / 400);
}
}
@media print {
:root {
font-size: 12px;
}
}
/* ===== Headings ===== */
h2 {
margin-block: 2.5rem 1rem;
}
/* ===== Paragraphs ===== */
p {
line-height: 1.5;
margin-block: 1rem;
}
/* ===== Lists ===== */
li {
line-height: 1.5;
margin-block: 0.25rem;
}