Created
September 10, 2020 14:01
-
-
Save joviczarko/43c507c8121e349895116d70e7dbbb4a to your computer and use it in GitHub Desktop.
Ordered list number
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
.ordered-numbers-list { | |
list-style: none; | |
counter-reset: order-counter; | |
li { | |
counter-increment: order-counter; | |
margin-bottom: 30px; | |
display:flex; | |
&::before { | |
content: counter(order-counter); | |
font-weight: bold; | |
font-size: 3rem; | |
margin-right: 30px; | |
line-height: 1; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment