Improved stats section

This commit is contained in:
bingus_violet 2024-05-20 11:34:25 -05:00
parent e22005dc86
commit 97f7234f92
3 changed files with 31 additions and 2 deletions

View file

@ -267,4 +267,26 @@ li {
video {
width: 95%;
max-height: 90vh;
}
sup {
color: gray;
}
.noteList {
list-style: none;
}
.noteList > * {
counter-increment: noteList;
color: gray;
font-size: 1rem;
}
.noteList > li::before {
content: "*" counter(noteList) ". ";
}
em {
color: inherit;
}