forked from rpsthecoder/svg-meter-gauge
-
Notifications
You must be signed in to change notification settings - Fork 20
/
style.css
127 lines (113 loc) · 3.13 KB
/
style.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#wrapper {position: relative; margin: auto;}
#meter {
width: 100%; height: 100%;
transform: rotateX(180deg);
}
.circle {fill: none;}
.outline, #mask {
stroke: #F1F1F1;
stroke-width: 65;
}
.range { stroke-width: 60; }
#slider, #lbl {
position: absolute;
}
#slider {
cursor: pointer;
left: 0;
margin: auto;
right: 0;
top: 58%;
width: 94%;
}
#lbl {
background-color: #4B4C51;
border-radius: 2px;
color: white;
font-family: 'courier new';
font-size: 15pt;
font-weight: bold;
padding: 4px 4px 2px 4px;
right: -48px;
top: 57%;
}
#meter_needle {
height: 40%;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 10%;
transform-origin: bottom center;
transform: rotate(270deg);
}
input[type=range] {
-webkit-appearance: none;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 12px;
cursor: pointer;
background: #F6F6F6;
border-radius: 25px;
box-shadow: 0 0 0 1px #f6f6f6;
}
input[type=range]::-webkit-slider-thumb {
box-shadow: 0 0 2px #B2B2B2;
border-radius: 50%;
height: 30px;
width: 30px;
background: #fff;
cursor: pointer;
-webkit-appearance: none;
margin-top: -9px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #F6F6F6;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 12.8px;
cursor: pointer;
background: #F6F6F6;
border-radius: 25px;
}
input[type=range]::-moz-range-thumb {
box-shadow: 0 0 2px #B2B2B2;
border-radius: 50%;
height: 30px;
width: 30px;
background: #fff;
cursor: pointer;
}
input[type=range]::-ms-track {
width: 100%;
height: 12.8px;
cursor: pointer;
}
input[type=range]::-ms-fill-lower {
background: #F6F6F6;
border-radius: 50px;
}
input[type=range]::-ms-fill-upper {
background: #F6F6F6;
border-radius: 50px;
}
input[type=range]::-ms-thumb {
height: 30px;
width: 30px;
top: 5px;
position: relative;
background: #fff;
cursor: pointer;
box-shadow: 0 0 2px #B2B2B2;
}
input[type=range]:focus::-ms-fill-lower {
background: #F6F6F6;
}
input[type=range]:focus::-ms-fill-upper {
background: #F6F6F6;
}