Skip to content

Instantly share code, notes, and snippets.

@joviczarko
Created September 10, 2020 14:01
Show Gist options
  • Save joviczarko/43c507c8121e349895116d70e7dbbb4a to your computer and use it in GitHub Desktop.
Save joviczarko/43c507c8121e349895116d70e7dbbb4a to your computer and use it in GitHub Desktop.
Ordered list number
.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