77 lines
1.3 KiB
SCSS
77 lines
1.3 KiB
SCSS
.toggleswitch2_mysy {
|
|
|
|
.label{
|
|
margin-bottom: 0px;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding-right: 5px !important;
|
|
}
|
|
.toggle-switch {
|
|
position: relative;
|
|
width: 98%;
|
|
display: inline-block;
|
|
text-align: left;
|
|
top: 5px;
|
|
max-height: 2.5rem;
|
|
}
|
|
.checkbox {
|
|
display: none;
|
|
}
|
|
.label {
|
|
display: block;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
border: 0 solid #bbb;
|
|
border-radius: 20px;
|
|
}
|
|
.inner {
|
|
display: block;
|
|
width: 200%;
|
|
margin-left: -100%;
|
|
transition: margin 0.3s ease-in 0s;
|
|
}
|
|
.inner:before,
|
|
.inner:after {
|
|
float: left;
|
|
width: 50%;
|
|
height: 36px;
|
|
padding: 0;
|
|
line-height: 36px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
box-sizing: border-box;
|
|
}
|
|
.inner:before {
|
|
content: "OUI";
|
|
padding-left: 10px;
|
|
background-color: #060;
|
|
color: #fff;
|
|
}
|
|
.inner:after {
|
|
content: "NON";
|
|
padding-right: 10px;
|
|
background-color: #bbb;
|
|
color: #fff;
|
|
text-align: right;
|
|
}
|
|
.switch {
|
|
display: block;
|
|
width: 24px;
|
|
margin: 5px;
|
|
background: #fff;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
border: 0 solid #bbb;
|
|
border-radius: 20px;
|
|
transition: all 0.3s ease-in 0s;
|
|
}
|
|
.checkbox:checked + .label .inner {
|
|
margin-left: 0;
|
|
}
|
|
.checkbox:checked + .label .switch {
|
|
right: 0px;
|
|
}
|
|
}
|