Last active
October 1, 2015 03:57
-
-
Save wbaaron/00595c0daa0d7d9aefdf to your computer and use it in GitHub Desktop.
vNgzvz
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" id="toggle"> | |
<label for="toggle"></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
label { | |
display: block; | |
width:42px; | |
height:24px; | |
background:#efefef; | |
border-radius:15px; | |
position:relative; | |
box-shadow:inset 0 0 3px rgba(0,0,0,0.2); | |
} | |
label:before { | |
content:""; | |
position:absolute; | |
top:3px; | |
height:18px; | |
width:18px; | |
left:3px; | |
background:#CC3F3F; | |
border-radius:9px; | |
transition:left 0.3s, background 0.3s; | |
} | |
label:hover { | |
cursor:pointer; | |
} | |
input { | |
visibility:hidden; | |
position:absolute; | |
} | |
input:checked + label:before { | |
left:21px; | |
background:#62CC3F; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment