-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathform-controls.css
More file actions
76 lines (75 loc) · 2.33 KB
/
form-controls.css
File metadata and controls
76 lines (75 loc) · 2.33 KB
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
input[type='range'] {
-webkit-appearance: none;
margin: initial;
width: 2in; }
input[type='range']:focus::-webkit-slider-runnable-track {
background: #DAD9D7; }
input[type='range']:focus::-ms-fill-lower {
background: #DAD9D7; }
input[type='range']:focus::-ms-fill-upper {
background: #DAD9D7; }
input[type='range']::-webkit-slider-runnable-track {
cursor: pointer;
height: 0.1875rem;
transition: all 0.2s ease;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #DAD9D7;
border: 0;
border-radius: 0; }
input[type='range']::-webkit-slider-thumb {
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #3867ff;
box-sizing: border-box;
border: 0.125rem solid white;
border-radius: 1rem;
cursor: pointer;
height: 1rem;
width: 1rem;
-webkit-appearance: none;
margin-top: calc(-1rem / 2 + 1px); }
input[type='range']::-moz-range-track {
cursor: pointer;
height: 0.1875rem;
transition: all 0.2s ease;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #DAD9D7;
border: 0;
border-radius: 0; }
input[type='range']::-moz-range-thumb {
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #3867ff;
box-sizing: border-box;
border: 0.125rem solid white;
border-radius: 1rem;
cursor: pointer;
height: 1rem;
width: 1rem; }
input[type='range']::-ms-track {
cursor: pointer;
height: 0.1875rem;
transition: all 0.2s ease;
background: transparent;
border-color: transparent;
border-width: 8px 0;
color: transparent; }
input[type='range']::-ms-fill-lower {
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #DAD9D7;
border: 0;
border-radius: 0; }
input[type='range']::-ms-fill-upper {
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #DAD9D7;
border: 0;
border-radius: 0; }
input[type='range']::-ms-thumb {
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 rgba(13, 13, 13, 0.2);
background: #3867ff;
box-sizing: border-box;
border: 0.125rem solid white;
border-radius: 1rem;
cursor: pointer;
height: 1rem;
width: 1rem;
margin-top: 0; }
/*# sourceMappingURL=form-controls.css.map */