UNPKG

514 BCSSView Raw
1input[type="range"]::-webkit-slider-thumb {
2 -webkit-appearance: none;
3 background: #4286be;
4 width: 16px;
5 height: 8px;
6 border-radius: 999px;
7}
8input[type="range"]::-moz-range-thumb {
9 -moz-appearance: none;
10 background: #4286be;
11 width: 16px;
12 height: 8px;
13 border-radius: 999px;
14}
15input[type="range"]::-ms-thumb {
16 background: #4286be;
17 width: 16px;
18 height: 8px;
19 border-radius: 999px;
20}
21input[type="range"] {
22 -webkit-appearance: none;
23}
24input[type="range"]::-moz-focus-outer {
25 border: 0;
26}