23 lines
303 B
CSS
23 lines
303 B
CSS
/************
|
|
# FOOTNOTES
|
|
************/
|
|
|
|
.footnotes {
|
|
font-size: var(--text-s);
|
|
|
|
hr {
|
|
margin-block-start: var(--space-xl);
|
|
}
|
|
|
|
li:not(:last-child) {
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
p {
|
|
font-size: inherit;
|
|
}
|
|
|
|
&:has(+ .page-footer) > ol {
|
|
margin-block-end: 0;
|
|
}
|
|
}
|