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
|
.label {
font-family: Calibri, Arial, sans-serif;
color: #fff;
text-shadow: 1px 1px 1px #222;
}
.panel {
box-shadow: 2px 2px 6px #444;
font-family: Arial;
background-color: #d0d0d4;
background: linear-gradient(to bottom, #f0f0e8 0%, #e8e8e8 1%, #b8b8b0 17%);
border-radius: 10px;
padding:6px;
}
.sliderBox {
float: left;
width: 40px;
height: 32px;
font-family: Calibri, Arial, sans-serif;
font-size: 18px;
}
.sliderLine {
margin-left: 60px;
height: 32px;
border-style: none;
border-width: 1px;
background-position: center;
background-image: url("../media/Widget Library/sliderline.png");
background-repeat: repeat-x;
}
.sliderMarker {
position: relative;
width: 14px;
height: 32px;
background-image: url("../media/Widget Library/sliderring14.png");
background-repeat: no-repeat;
background-position: center;
}
.sliderminValue {
float: left;
}
.slidermidValue {
text-shadow: 1px 1px 1px #222;
font-family: Calibri, Arial, sans-serif;
font-size: 12px;
color: #fff;
margin-left: 60px;
text-align: center;
}
.slidermaxValue {
float: right;
}
.binaryLine {
width: 36px;
height: 18px;
border-radius: 10px;
border-color: #555;
border-width: 1px;
border-style: solid;
box-shadow: 2px 2px 2px #444 inset;
}
.binaryMarker {
position: relative;
top: 2px;
width: 11px;
height: 11px;
border-color: #777;
border-style: solid;
border-radius: 6px;
background-color: #fff;
border-width: 1px;
box-shadow: 2px 2px 2px #444;
background: linear-gradient(to bottom, #fff 0%,#e0e0d8 60%);
}
|