You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
4 years ago
|
.material-switch > input[type="checkbox"] {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.material-switch > label {
|
||
|
cursor: pointer;
|
||
|
margin-top: .8rem;
|
||
|
float: right;
|
||
|
height: 0px;
|
||
|
position: relative;
|
||
|
width: 40px;
|
||
|
}
|
||
|
|
||
|
.material-switch > label::before {
|
||
|
background: rgb(0, 0, 0);
|
||
|
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
|
||
|
border-radius: 8px;
|
||
|
content: '';
|
||
|
height: 16px;
|
||
|
margin-top: -8px;
|
||
|
position:absolute;
|
||
|
opacity: 0.3;
|
||
|
transition: all 0.4s ease-in-out;
|
||
|
width: 40px;
|
||
|
}
|
||
|
.material-switch > label::after {
|
||
|
background: #efefef;
|
||
|
border-radius: 16px;
|
||
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
|
||
|
content: '';
|
||
|
height: 24px;
|
||
|
left: -4px;
|
||
|
margin-top: -8px;
|
||
|
position: absolute;
|
||
|
top: -4px;
|
||
|
transition: all 0.3s ease-in-out;
|
||
|
width: 24px;
|
||
|
}
|
||
|
.material-switch > input[type="checkbox"]:checked + label::before {
|
||
|
background: #17a2b8;
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
.material-switch > input[type="checkbox"]:checked + label::after {
|
||
|
background: #17a2b8;
|
||
|
left: 20px;
|
||
|
}
|
||
|
|
||
|
.material-switch {
|
||
|
display: inline-block;
|
||
|
}
|