trwnh.com/unified.test.hugo/assets/styles/features/footnotes.scss

29 lines
445 B
SCSS
Raw Normal View History

.footnote-ref {
font-weight: bold;
&:before {
content: " [";
}
&:after {
2024-10-16 05:34:37 +00:00
content: "] ";
}
}
.footnotes {
hr {
display: flex;
align-items: center;
border: 0;
&:before {
content: "Footnotes";
color: var(--ui-text);
text-transform: uppercase;
font-weight: 900;
font-size: 0.8em;
}
&:after {
content: '';
width: 100%;
margin-inline-start: 1rem;
border-block-end: 1px solid var(--ui-overlay);
}
}
}