Skip to content

Instantly share code, notes, and snippets.

@lilumi
Created June 17, 2015 18:04
Show Gist options
  • Save lilumi/1c344d716f0ca2421482 to your computer and use it in GitHub Desktop.
Save lilumi/1c344d716f0ca2421482 to your computer and use it in GitHub Desktop.
UL LI with colored bulltes
ul {
list-style: none;
margin-bottom: 1em;
}
ul li {
list-style: none;
position: relative;
padding-left: 16px;
padding-bottom: 0;
}
ul li:before {
content: "• ";
color: #96cbec;
display: block;
position: absolute;
top: 0px;
left: -2px;
font-size: 34px;
line-height: 25px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment