Skip to content

Instantly share code, notes, and snippets.

@HeathHopkins
Last active August 29, 2015 14:23
Show Gist options
  • Save HeathHopkins/ec950e43bac608854530 to your computer and use it in GitHub Desktop.
Save HeathHopkins/ec950e43bac608854530 to your computer and use it in GitHub Desktop.
Font Awesome Checkbox
input[type=checkbox] { display:none; }
input[type=checkbox] + label:before {
font-family: FontAwesome;
display: inline-block;
content: "\f096";
letter-spacing: 10px;
}
input[type=checkbox]:checked + label:before {
content: "\f046";
letter-spacing: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment