41 lines
695 B
SCSS
41 lines
695 B
SCSS
|
.sliderNumber {
|
||
|
position: absolute;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
color: black;
|
||
|
font-size: 1.7em;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.sliderContainer {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.slider {
|
||
|
-webkit-appearance: none;
|
||
|
appearance: none;
|
||
|
height: 55px;
|
||
|
width: 300px;
|
||
|
background-color: lightgray;
|
||
|
}
|
||
|
|
||
|
.slider::-webkit-slider-thumb {
|
||
|
-webkit-appearance: none;
|
||
|
appearance: none;
|
||
|
width: 20px;
|
||
|
height: 60px;
|
||
|
background: #f1f8t6;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.slider::-moz-range-thumb {
|
||
|
width: 20px;
|
||
|
height: 60px;
|
||
|
border-radius: 0px;
|
||
|
background: #f1f8t6;
|
||
|
cursor: pointer;
|
||
|
}
|