Skip to content

Instantly share code, notes, and snippets.

@evilnapsis
Created October 2, 2013 03:04
Show Gist options
  • Save evilnapsis/6788574 to your computer and use it in GitHub Desktop.
Save evilnapsis/6788574 to your computer and use it in GitHub Desktop.
A Pen by evilnapsis.
<div class="boxes">
<div class="box green"></div>
<div class="box red"></div>
<div class="box yellow"></div>
<div class="box blue"></div>
</div>
.boxes .box {
width:100px;
height:100px;
border-radius:50px;
float:left;
margin-left:40px;
}
.green {
background:#27ae60;
}
.red {
background:#2980b9;
}
.blue {
background:#c0392b;
}
.yellow {
background:#f1c40f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment