Skip to content

Instantly share code, notes, and snippets.

@lilumi
Created December 7, 2018 17:00
Show Gist options
  • Save lilumi/0420c440926ce7aeb79ba3e621e81427 to your computer and use it in GitHub Desktop.
Save lilumi/0420c440926ce7aeb79ba3e621e81427 to your computer and use it in GitHub Desktop.
Ol with Colored Numbers
ol {
list-style: none;
counter-reset: li;
}
ol > li {
counter-increment: li;
margin-bottom: 7px;
}
ol > li::before {
content: counter(li, decimal-leading-zero)".";
color: #e15325;
display: inline-block;
width: 2em;
margin-left: -1.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment