75 lines
1.3 KiB
SCSS
75 lines
1.3 KiB
SCSS
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 25px;
|
|
}
|
|
|
|
.switch-div{
|
|
right: 40px;
|
|
}
|
|
|
|
/* 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;
|
|
-webkit-transition: 0.4s;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 37px;
|
|
width: 37px;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto 0;
|
|
-webkit-transition: 0.4s;
|
|
transition: 0.4s;
|
|
box-shadow: 0 0 15px #2020203d;
|
|
background: var(--switch) url('https://i.ibb.co/7JfqXxB/sunny.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
input:checked + .slider {
|
|
background-color: var(--link-color);
|
|
}
|
|
|
|
input:focus + .slider {
|
|
box-shadow: 0 0 1px var(--link-color);
|
|
}
|
|
|
|
input:checked + .slider:before {
|
|
-webkit-transform: translateX(24px);
|
|
-ms-transform: translateX(24px);
|
|
transform: translateX(24px);
|
|
background: var(--switch) url('https://i.ibb.co/FxzBYR9/night.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
/* Rounded sliders */
|
|
.slider.round {
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.slider.round:before {
|
|
border-radius: 50%;
|
|
}
|