Created
December 7, 2018 17:00
-
-
Save lilumi/0420c440926ce7aeb79ba3e621e81427 to your computer and use it in GitHub Desktop.
Ol with Colored Numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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