rucksack-css
Version:
A little bag of CSS superpowers
27 lines (26 loc) • 514 B
CSS
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #4286be;
width: 16px;
height: 8px;
border-radius: 999px;
}
input[type="range"]::-moz-range-thumb {
-moz-appearance: none;
background: #4286be;
width: 16px;
height: 8px;
border-radius: 999px;
}
input[type="range"]::-ms-thumb {
background: #4286be;
width: 16px;
height: 8px;
border-radius: 999px;
}
input[type="range"] {
-webkit-appearance: none;
}
input[type="range"]::-moz-focus-outer {
border: 0;
}