Created
June 19, 2016 20:16
-
-
Save leymannx/6e1e4a66dfd3ecda1acbfc194d2a6db0 to your computer and use it in GitHub Desktop.
unordered list <ul> with colored bullets and finer indent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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