-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewslider.css
executable file
·85 lines (85 loc) · 2.11 KB
/
newslider.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
84
85
input[type=range] {
-webkit-appearance: none;
width: 100%;
margin: 5.4px 0;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 13.2px;
cursor: pointer;
box-shadow: 3.1px 3.1px 8.3px #64b3d4, 0px 0px 3.1px #78bdda;
background: #ffffff;
border-radius: 5.5px;
border: 0.9px solid #9159ff;
}
input[type=range]::-webkit-slider-thumb {
box-shadow: 2px 2px 1.2px #6ba4e6, 0px 0px 2px #81b1ea;
border: 1px solid #3ad4f5;
height: 24px;
width: 25px;
border-radius: 3px;
background: #dbf6ea;
cursor: pointer;
-webkit-appearance: none;
margin-top: -6.3px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #ffffff;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 13.2px;
cursor: pointer;
box-shadow: 3.1px 3.1px 8.3px #64b3d4, 0px 0px 3.1px #78bdda;
background: #ffffff;
border-radius: 5.5px;
border: 0.9px solid #9159ff;
}
input[type=range]::-moz-range-thumb {
box-shadow: 2px 2px 1.2px #6ba4e6, 0px 0px 2px #81b1ea;
border: 1px solid #3ad4f5;
height: 24px;
width: 25px;
border-radius: 3px;
background: #dbf6ea;
cursor: pointer;
}
input[type=range]::-ms-track {
width: 100%;
height: 13.2px;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: #878787;
border: 0.9px solid #9159ff;
border-radius: 11px;
box-shadow: 3.1px 3.1px 8.3px #64b3d4, 0px 0px 3.1px #78bdda;
}
input[type=range]::-ms-fill-upper {
background: #ffffff;
border: 0.9px solid #9159ff;
border-radius: 11px;
box-shadow: 3.1px 3.1px 8.3px #64b3d4, 0px 0px 3.1px #78bdda;
}
input[type=range]::-ms-thumb {
box-shadow: 2px 2px 1.2px #6ba4e6, 0px 0px 2px #81b1ea;
border: 1px solid #3ad4f5;
height: 24px;
width: 25px;
border-radius: 3px;
background: #dbf6ea;
cursor: pointer;
height: 13.2px;
}
input[type=range]:focus::-ms-fill-lower {
background: #ffffff;
}
input[type=range]:focus::-ms-fill-upper {
background: #ffffff;
}