-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathslider.css
83 lines (73 loc) · 1.45 KB
/
slider.css
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
input[type=range] {
-webkit-appearance: none;
margin-top: 15px;
margin-bottom: 15px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-ms-track {
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 36px;
width: 16px;
background-color:#444;
cursor: pointer;
margin-top:-15px;
}
input[type=range]::-moz-range-thumb {
margin-top:-15px;
height: 36px;
width: 16px;
background-color:#444;
cursor: pointer;
}
input[type=range]::-ms-thumb {
margin-top:-15px;
height: 36px;
width: 16px;
background-color:#444;
cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
height: 5px;
cursor: pointer;
background-color: #aaa;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #aaa;
}
input[type=range]::-moz-range-track {
height: 5px;
cursor: pointer;
background-color: #aaa;
}
input[type=range]::-ms-track {
height: 5px;
cursor: pointer;
background-color: #aaa;
}
input[type=range]::-ms-fill-lower {
height: 5px;
cursor: pointer;
background-color: #aaa;
}
input[type=range]:focus::-ms-fill-lower {
background: #aaa;
}
input[type=range]::-ms-fill-upper {
height: 5px;
cursor: pointer;
background-color: #aaa;
}
input[type=range]:focus::-ms-fill-upper {
background: #aaa;
}