more extras

This commit is contained in:
2023-05-14 19:59:38 -07:00
parent a02d6c429c
commit ab40bf4a09
8 changed files with 805 additions and 0 deletions

View File

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