-
Notifications
You must be signed in to change notification settings - Fork 0
/
irrigation.css
77 lines (65 loc) · 1.14 KB
/
irrigation.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
@charset "utf-8";
/* CSS Document */
body {
width: 980px;
display: block;
margin-left: auto;
margin-right: auto;
}
#range_vertical {
-webkit-appearance: slider-vertical;
width: 20px;
height: 150px;
padding: 0px 5px 0px 5px;
}
input[type=range].range_vertical {
-webkit-appearance: slider-vertical;
background-color: blue;
width: 10px;
height:200px;
}
#range_vertical::-webkit-slider-thumb {
-webkit-appearance: sliderthumb-vertical;
background-color: blue;
width: 20px;
height: 20px;
border-radius: 10px;
}
input[type="range"] {
color: blue;
border: initial;
margin: 2px;
}
label {
cursor: default;
color: green;
text-transform: uppercase;
}
input.vertical {
-webkit-appearance: slider-vertical;
width: 50px;
background-color: blue;
}
.fader {
-webkit-appearance: sliderthumb-vertical;
width: 20px;
height: 20px;
border-radius: 10px;
background-color: green;
}
.range-examples {
font-size: 9px;
}
h3 {
font-size: 9px;
width: 55px;
text-align: center;
}
#slider {
width: 50px;
height: 200px;
display: inline-block;
padding-left: 5px;
padding-right: 5px;
clear: both;
}