work on splitting up extras css; start handling build metadata; start building sitemaps
This commit is contained in:
54
extras/typography/compact.css
Normal file
54
extras/typography/compact.css
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user