Checkbox

Checkbox

by Joe Young

HTML

<input type="checkbox" id="cb1" name="cb" value="">
<label for="cb1"></label>

CSS

input[type=radio], input[type=checkbox] {
    display:none;
}
input[type=checkbox] + label:before {
    content:"";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align:middle;
    margin-right: 8px;
    background-color: #aaa;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, .3);
    border-radius: 4px;
}
input[type=checkbox]:checked + label:before {
    content:"\2714";
    color:white;
    background-color: #666;
    text-align:center;
    line-height:20px;
    /*text-shadow:0px 0px 3px #eee;*/
}