galaxy/Toggle-switches/YaroslavFilipenko_red-turtle-90.html

62 lines
1 KiB
HTML

<div class="theme_switcher">
<label id="switch" class="switch">
<input type="checkbox"><span class="slider round"></span>
</label>
</div>
<style>
/* From Uiverse.io by YaroslavFilipenko - Tags: slider, input, toggle switch */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 20px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #b1b9c3;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.slider:before {
position: absolute;
content: '';
height: 30px;
width: 30px;
bottom: -5px;
background: #18333E;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
input:checked+.slider {
background-color: #b1b9c3;
}
input:checked+.slider:before {
-webkit-transform: translateX(35px);
-ms-transform: translateX(35px);
transform: translateX(35px);
background: #F2F8FD;
}
</style>