Status Icons ( CSS only )
HTML
<span class="status_icon green"> </span>
<span class="status_icon red"> </span>
<span class="status_icon yellow"> </span>
CSS
.status_icon {
display: block;
height: 8px;
width: 8px;
border-radius: 4px;
margin: 4px;
box-shadow: 0px 0px 1px rgba(0, 0, 0, .25)
}
.green { background-color: #6DAB43 }
.red { background-color: #EA4425; }
.yellow { background-color: #FFDE17 }