Geçiş Anahtarı 10

/* The switch10 - the box around the slider10 */
.switch10 {
font-size: 11px;
position: relative;
display: inline-block;
width: 3.5em;
height: 1em;
}

/* Hide default HTML checkbox */
.switch10 input {
opacity: 0;
width: 0;
height: 0;
}

/* The slider10 */
.slider10 {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
border: 2px solid #000;
transition: .4s;
border-radius: 1px;
}

.slider10:before {
position: absolute;
content: "";
height: 1.3em;
width: 1.2em;
border-radius: 2px;
left: 0.2em;
bottom: 0.3em;
background-color: #fff;
border: 2px solid #000;
transition: 0.1s;
}

input:checked + .slider10 {
background-color: #000;
}

input:focus + .slider10 {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider10:before {
transform: translateX(1.3em);
}