55 lines
475 B
CSS
55 lines
475 B
CSS
|
|
: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;
|
|
}
|