Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Last active November 21, 2018 15:32
Show Gist options
  • Save Farmatique/faa352371c289699f29c43c07a03f9dc to your computer and use it in GitHub Desktop.
Save Farmatique/faa352371c289699f29c43c07a03f9dc to your computer and use it in GitHub Desktop.
Custom numbers dots styling in list ol ul
ol {
list-style: none;
counter-reset: item;
}
li {
counter-increment: item;
margin-bottom: 5px;
}
li:before {
margin-right: 10px;
content: counter(item) ".";
background: lightblue;
border-radius: 100%;
color: white;
width: 1.2em;
text-align: center;
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment