Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/414c7c963a7786ba6cd048323d0a2188 to your computer and use it in GitHub Desktop.
Save Farmatique/414c7c963a7786ba6cd048323d0a2188 to your computer and use it in GitHub Desktop.
Change color of bullet inside LI
ul {
list-style: none;
line-height: 1em;
font-size: 3vw;
}
ul li:before {
content: "";
line-height: 1em;
width: .5em;
height: .5em;
background-color: red;
float: left;
margin: .25em .25em 0;
border-radius: 50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment