-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_meters.styl
36 lines (36 loc) · 1.01 KB
/
_meters.styl
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
// Meters
// Credit: https://css-tricks.com/html5-meter-element/
.meter
appearance: none
background: $bg-color
border: 0
border-radius: $border-radius
display: block
width: 100%
height: $unit-4
&::-webkit-meter-inner-element
display: block
&::-webkit-meter-bar,
&::-webkit-meter-optimum-value,
&::-webkit-meter-suboptimum-value,
&::-webkit-meter-even-less-good-value
border-radius: $border-radius
&::-webkit-meter-bar
background: $bg-color
&::-webkit-meter-optimum-value
background: $success-color
&::-webkit-meter-suboptimum-value
background: $warning-color
&::-webkit-meter-even-less-good-value
background: $error-color
&::-moz-meter-bar,
&:-moz-meter-optimum,
&:-moz-meter-sub-optimum,
&:-moz-meter-sub-sub-optimum
border-radius: $border-radius
&:-moz-meter-optimum::-moz-meter-bar
background: $success-color
&:-moz-meter-sub-optimum::-moz-meter-bar
background: $warning-color
&:-moz-meter-sub-sub-optimum::-moz-meter-bar
background: $error-color