Last active
January 20, 2016 10:03
-
-
Save jleehr/7eb4cc281f0273e2f965 to your computer and use it in GitHub Desktop.
HTML form radio and checkbox style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
&+ label { | |
line-height: 1.2em; | |
} | |
/* Checkboxes */ | |
&[type="checkbox"] { | |
display: none; | |
&:checked + label:before { | |
content: "\f00c"; | |
} | |
} | |
&[type="radio"] { | |
display: none; | |
&+ label:before { | |
border-radius: 8px; | |
} | |
&:checked + label:before { | |
content: "\2022"; | |
font-size: 31px; | |
text-align: center; | |
line-height: 0.5em; | |
} | |
} | |
&+ label:before { | |
border: 1px solid #b9b9b9; | |
background: #fff; | |
content: "\00a0"; | |
display: inline-block; | |
font: 12px FontAwesome, sans-serif; | |
height: 16px; | |
margin: 0 5px 0 0; | |
padding: 0; | |
vertical-align: top; | |
width: 16px; | |
} | |
&:checked + label:before { | |
background: #fff; | |
color: #797979; | |
text-align: center; | |
} | |
&[readonly] + label:before, | |
&:disabled + label:before { | |
background: #e2e2e2 !important; | |
color: #a9a9a9 !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment