Skip to content

Instantly share code, notes, and snippets.

@alonat
Created October 2, 2019 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alonat/e743c78b6492468cba4b8d970f695e8b to your computer and use it in GitHub Desktop.
Save alonat/e743c78b6492468cba4b8d970f695e8b to your computer and use it in GitHub Desktop.
ol {
list-style-type: none;
counter-reset: li;
}
li {
font-size: 2rem;
}
li:before {
counter-increment: li;
content: counter(li, decimal-leading-zero);
color: red;
margin-right: 0.25em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment