Build mobile apps with simple HTML, CSS, and JS components. http://goratchet.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
958 B

12 years ago
/* Toggle styles (to be used with toggles.js)
-------------------------------------------------- */
.toggle {
position: relative;
width: 45px;
12 years ago
height: 28px;
background-color: #fff;
border: 2px solid #e6e6e6;
12 years ago
border-radius: 20px;
}
// Sliding handle
12 years ago
.toggle-handle {
position: absolute;
top: -1px;
left: -1px;
z-index: 2;
width: 28px;
height: 28px;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, .1);
12 years ago
border-radius: 100px;
box-shadow: 0 3px 3px rgba(0,0,0,.08);
12 years ago
-webkit-transition: -webkit-transform 0.1s ease-in-out, border 0.1s ease-in-out;
transition: transform 0.1s ease-in-out, border 0.1s ease-in-out;
}
// Active state for toggle
12 years ago
.toggle.active {
background-color: #4cd964;
border: 2px solid #4cd964;
12 years ago
}
// Active state for toggle handle
12 years ago
.toggle.active .toggle-handle {
border-color: #4cd964;
-webkit-transform: translate3d(17px,0,0);
transform: translate3d(17px,0,0);
12 years ago
}