69 lines
631 B
CSS
69 lines
631 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;
|
|
}
|
|
|
|
dl {
|
|
padding: 1rem;
|
|
}
|
|
|
|
dd + dt {
|
|
margin-block-start: 1rem;
|
|
}
|
|
|
|
:is(dt, dd) > p {
|
|
line-height: 1.5;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0.15rem;
|
|
}
|