Created
August 5, 2014 17:45
-
-
Save daleyjem/97aef542a48aa5deeba7 to your computer and use it in GitHub Desktop.
Custom Checkbox
This file contains hidden or 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
<label> | |
<input class="checkbox-custom" type="checkbox" name="exclude" value="exclude">Don't remind me again | |
</label> |
This file contains hidden or 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[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