Created
February 3, 2014 15:29
-
-
Save JTLR/8785878 to your computer and use it in GitHub Desktop.
Styleable UL and OL bullets, works in IE8+
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 { | |
li { | |
&:before { | |
content: "• "; | |
color: #FF0000; | |
} | |
} | |
} | |
ol { | |
li{ | |
counter-increment: item; | |
&:before { | |
content: counter(item) ". "; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment