Skip to content

Instantly share code, notes, and snippets.

@ezy
Created August 29, 2013 00:17
Show Gist options
  • Save ezy/6372971 to your computer and use it in GitHub Desktop.
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
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