slider-for-trainer
Version:
[BETA] Slider pour diapos formateur.
83 lines (80 loc) • 1.44 kB
CSS
/* COMMON */
body {
min-width: 500px;
}
/* body {
min-width: 500px;
opacity: 0;
transition: opacity 0.5;
}
.appears {
opacity: 1;
} */
/* REVEAL SLIDES */
/* .reveal .slide-number {
left: 8px; right: inherit;
top: 8px; bottom: inherit;
border-radius: 3px;
box-shadow: 1px 1px 2px #666;
background: white;
color: #444;
position: absolute;
}
.reveal .slides img {
box-shadow: 1px 1px 0px #444, -1px -1px 0px #444, -1px 1px 0px #444, 1px -1px 0px #444, 1px 1px 5px #666;
border-radius: 3px;
}
/* THEME BUTTON */
/* .switch {
position: absolute;
right: 8px;
top: 8px;
display: inline-block;
width: 60px;
height: 34px;
z-index: 999999999;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #a730d9;
}
input:focus + .slider {
box-shadow: 0 0 1px #a730d9;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
} */