Created
August 29, 2013 00:17
-
-
Save ezy/6372971 to your computer and use it in GitHub Desktop.
Using the :before property to create a retina ready alternate colour disc in an unordered list
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 { | |
padding: 5px 0 10px; | |
margin: 0; | |
position: relative; | |
li { | |
padding: 0 0 10px 15px; | |
&:before { | |
content: "•"; | |
position: absolute; | |
left: 0px; | |
font-size: 21px; | |
color: #444; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment