feat: start lists with zero

This commit is contained in:
Gigi
2022-05-03 22:42:53 +02:00
parent 193cca2697
commit d07453a02f

View File

@@ -71,6 +71,17 @@ p>code {
margin-bottom: 2rem;
}
.content ol {
counter-reset: num -1;
}
.content ol li {
list-style-type: none;
}
.content ol li:before {
counter-increment: num;
content: counter(num) ". ";
}
.content li {
margin-bottom: 0.5rem;
}