Status Icons ( CSS only )

by SebastianPataneMasuelli

HTML

<span class="green"> </span>
<span class="red"> </span>
<span class="yellow"> </span>

CSS

span {
    background-color: green;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 4px;
}

.green { background-color: green }
.red { background-color: red; }
.yellow { background-color: yellow }