Last active
August 29, 2015 14:15
-
-
Save jmwhittaker/81e27d52553d3899c1aa to your computer and use it in GitHub Desktop.
CSS Toggle switch
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
body { | |
background-color: #CED6DC; | |
} | |
.switch { | |
position: relative; | |
padding-bottom: 10px; | |
} | |
/* switch component */ | |
.switch-input { | |
position: absolute; | |
margin-left: -999px; | |
visibility: hidden; | |
} | |
.switch-label { | |
display: block; | |
position: relative; | |
cursor: pointer; | |
outline: none; | |
user-select: none; | |
} | |
/* Switch styling */ | |
.switch-label { | |
display: inline-block; | |
padding: 2px; | |
/* width: 20px; */ | |
height: 12px; | |
border-radius: 2px; | |
} | |
.switch-label:before, | |
.switch-label:after { | |
display: block; | |
position: absolute; | |
top: 1px; | |
left: 1px; | |
bottom: 1px; | |
content: ""; | |
} | |
.switch-label:before { | |
right: 1px; | |
background-color: #BDC7CE; | |
border-radius: 2px; | |
transition: background 0.2s ease-in-out; | |
box-shadow: inset 0px 2px 8px -3px rgba(0,0,0,0.85); | |
width: 20px; | |
} | |
.switch-label:after { | |
width: 7px; | |
background-color: #fff; | |
border-radius: 2px; | |
transition: margin 0.2s ease-in-out; | |
border: 1px solid #ACB8C1; | |
} | |
/* Checked state */ | |
.switch-input:checked + .switch-label:before { | |
background-color: #61A7E3; | |
} | |
.switch-input:checked + .switch-label:after { | |
margin-left: 13px; | |
} | |
.switch-label-text { | |
margin-left: 32px; /* set to width of switch + any extra padding */ | |
} |
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
<div class="switch"> | |
<input id="switch-confirm" type="checkbox" class="switch-input" /> | |
<label for="switch-confirm" class="switch-label"><span class="switch-label-text">Switch one</span></label> | |
</div> | |
<div class="switch"> | |
<input id="switch-confirm" type="checkbox" class="switch-input" checked/> | |
<label for="switch-confirm" class="switch-label"><span class="switch-label-text">Switch two</span></label> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment