Skip to content

Instantly share code, notes, and snippets.

@leymannx
Created June 19, 2016 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leymannx/6e1e4a66dfd3ecda1acbfc194d2a6db0 to your computer and use it in GitHub Desktop.
Save leymannx/6e1e4a66dfd3ecda1acbfc194d2a6db0 to your computer and use it in GitHub Desktop.
unordered list <ul> with colored bullets and finer indent
ul {
list-style: none;
padding: 0;
li {
margin-left: 12px;
text-indent: -13px;
}
li:before {
content: "\2022\00a0\00a0";
color: purple;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment