Skip to content

Instantly share code, notes, and snippets.

@daleyjem
Created August 5, 2014 17:45
Show Gist options
  • Save daleyjem/97aef542a48aa5deeba7 to your computer and use it in GitHub Desktop.
Save daleyjem/97aef542a48aa5deeba7 to your computer and use it in GitHub Desktop.
Custom Checkbox
<label>
<input class="checkbox-custom" type="checkbox" name="exclude" value="exclude">Don't remind me again
</label>
input[type="checkbox"] {
&.checkbox-custom {
margin-left: -9999px;
width: 9999px;
margin-right: 2.2em;
position: relative;
vertical-align: middle;
height: 1em;
&:before,
&:after {
content: '';
position: absolute;
}
&:before {
right: -1.5em;
width: 1.5em;
height: 1.5em;
background-color: #fff;
border: solid 1px #ccc;
bottom: 0;
}
&:after {
right: -1em;
font-size: 1.4em;
color: #666;
line-height: .3em;
}
&:checked {
&:after {
content: '\2713';
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment