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