Search
 
SCRIPT & CODE EXAMPLE
 

CSS

switch checkbox

[type="checkbox"] {
  position: relative;
  left: 30px;
  top: 0px;
  z-index: 0;
  -webkit-appearance: none;
}
[type="checkbox"] + label {
  position: relative;
  display: block;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 24px;
  line-height: 1.3;
  padding-left:70px;
  position: relative;
  margin-top: -30px;
}
[type="checkbox"] + label:before {
  width: 60px;
  height: 30px;
  border-radius: 30px;
  border: 2px solid #ddd;
  background-color: #EEE;
  content: "";
  margin-right: 15px;
  transition: background-color 0.5s linear;
  z-index: 5;
  position: absolute;
  left: 0px;
}
[type="checkbox"] + label:after {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #fff;
  content: "";
  transition: margin 0.1s linear;
  box-shadow: 0px 0px 5px #aaa;
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 10;
}
[type="checkbox"]:checked + label:before {
  background-color: #2b8718;
}
[type="checkbox"]:checked + label:after {
  margin: 0 0 0 30px;
}
Comment

PREVIOUS NEXT
Code Example
Css :: sass syntax cheat sheet 
Css :: why is my body background color in css not working 
Css :: css selector first level child 
Css :: nth-child css 
Css :: react use global css classes 
Css :: * css meaning 
Css :: target element pseudo-classes 
Css :: css nearest neighbor 
Css :: css how to make 2d animations at once 
Css :: disable dequeue contact form7 
Css :: inline css not working table odoo 11 
Css :: mailto link with no decoration 
Css :: daphne vs gunicorn 
Css :: css horror fonts 
Css :: react bootstrap css module use media query mixin 
Css :: haml add css 
Css :: html percentage css 
Css :: make changes to api fetch onclick in react 
Css :: div after rotation some part not showing 
Css :: html css limit page to a4 
Css :: div with no content have a width/height 
Css :: operating system font-family css 
Css :: poner en input signo dolar con css 
Css :: how to remove elementor button outline after pressing button 
Css :: responsive header with logo and menu css code 
Css :: jquery .css not working 
Css :: Footer siempre al fondo 
Css :: list icon color change in css 
Css :: how can i reset the paswd of my subrion admin panel 
Css :: how to add blurr and grain in css 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =