galaxy/Toggle-switches/Praashoo7_stupid-termite-0.html

56 lines
1 KiB
HTML

<label class="switch">
<input class="chk" type="checkbox">
<span class="slider"></span>
</label>
<style>
/* From Uiverse.io by Praashoo7 - Tags: switch, on, off */
/* The switch - the box around the slider */
.switch {
font-size: 17px;
position: relative;
display: inline-block;
width: 4em;
height: 2em;
}
/* Hide default HTML checkbox */
.switch .chk {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(255, 255, 255);
transition: .4s;
border-radius: 30px;
}
.slider:before {
position: absolute;
content: "OFF";
display: grid;
place-content: center;
height: 1.6em;
width: 3.6em;
border-radius: 20px;
left: 0.17em;
bottom: 0.22em;
background-color: rgb(255, 0, 0);
box-shadow: 0px 0px 3.7px black;
transition: .4s ease-in-out;
}
.chk:checked + .slider:before {
content: "ON";
background-color: limegreen;
box-shadow: inset 0px 0px 5px black;
}
</style>