File size: 707 Bytes
6285bb8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
input[type="range"]::-webkit-slider-runnable-track {
background: linear-gradient(90deg, #4caf50, #81c784);
border-radius: 10px;
height: 6px;
}
input[type="range"]::-webkit-slider-thumb {
background-color: #4caf50;
border: 2px solid #388e3c;
border-radius: 50%;
width: 20px;
height: 20px;
cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
background-color: #4caf50;
border: 2px solid #388e3c;
border-radius: 50%;
width: 20px;
height: 20px;
cursor: pointer;
}
input[type="range"]::-ms-thumb {
background-color: #4caf50;
border: 2px solid #388e3c;
border-radius: 50%;
width: 20px;
height: 20px;
cursor: pointer;
}
|