galaxy/Toggle-switches/Praashoo7_angry-starfish-78.html

57 lines
1 KiB
HTML

<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<style>
/* From Uiverse.io by Praashoo7 - Tags: neumorphism, switch */
/* The switch - the box around the slider */
.switch {
font-size: 17px;
position: relative;
display: inline-block;
width: 3.5em;
height: 2em;
}
/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
transition: .4s;
border-radius: 5px;
}
.slider:before {
position: absolute;
content: "";
height: 1.4em;
width: 0.1em;
border-radius: 0px;
left: 0.3em;
bottom: 0.3em;
background-color: white;
transition: .4s;
}
input:checked + .slider {
background-color: #171717;
box-shadow: inset 2px 5px 10px rgb(0, 0, 0);
}
input:checked + .slider:before {
transform: translateX(2.8em) rotate(360deg);
}
</style>