Skip to content

Instantly share code, notes, and snippets.

@AkA84
Created July 22, 2014 16:17
Show Gist options
  • Save AkA84/8052d3a04fc4517e24e1 to your computer and use it in GitHub Desktop.
Save AkA84/8052d3a04fc4517e24e1 to your computer and use it in GitHub Desktop.
/** Circle icon **/
<span class="circle circle--green"></span>
.circle {
border-radius: 50%;
width: 10px;
height: 10px;
}
.circle--green {
background: green;
}
.circle-red {
background: red;
}
/** Tick mark **/
<span class="assessed">Assessed<span>
.assessed:before {
content: '\2713';
color: orange;
margin-right: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment