Created
February 8, 2019 11:10
-
-
Save KnightAlex/6b1eabeceec10f53e5ee31dd088c5f84 to your computer and use it in GitHub Desktop.
Bullet colour
This file contains hidden or 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; | |
li::before { | |
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */ | |
color: red; /* Change the color */ | |
font-weight: bold; /* If you want it to be bold */ | |
display: inline-block; /* Needed to add space between the bullet and the text */ | |
width: 20px; /* Also needed for space (tweak if needed) */ | |
margin-left: -2px; /* Also needed for space (tweak if needed) */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment