/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
9.3.2 by Erik Wikström
Updated slider library and created a new demo
1
.label {
2
	font-family: Calibri, Arial, sans-serif;
3
	color: #fff;
4
	text-shadow: 1px 1px 1px #222;
5
}
6
7
.panel {
8
	box-shadow: 2px 2px 6px #444;
9
	font-family: Arial;
10
	background-color: #d0d0d4;
11
	background: linear-gradient(to bottom, #f0f0e8 0%, #e8e8e8 1%, #b8b8b0 17%);
22.1.1 by Adam Ringhede
Fixes CSS3 for IE
12
	-pie-background: linear-gradient(top, #f0f0e8 0%, #e8e8e8 1%, #b8b8b0 17%);
9.3.2 by Erik Wikström
Updated slider library and created a new demo
13
	border-radius: 10px;
14
	padding:6px;
15
}
16
17
.sliderBox {
18
	float: left;
19
	width: 40px;
20
	height: 32px;
21
	font-family: Calibri, Arial, sans-serif;
22
	font-size: 18px;
23
}
24
25
.sliderLine {
26
	margin-left: 60px;
27
	height: 32px;
28
	border-style: none;
29
	border-width: 1px;
30
	background-position: center;
31
	background-image: url("../media/Widget Library/sliderline.png");
32
	background-repeat: repeat-x;
33
}
34
35
.sliderMarker {
36
	position: relative;
37
	width: 14px;
38
	height: 32px;
39
	background-image: url("../media/Widget Library/sliderring14.png");
40
	background-repeat: no-repeat;
41
	background-position: center;
42
}
43
44
.sliderminValue {
45
	float: left;
46
}
47
48
.slidermidValue {
49
	text-shadow: 1px 1px 1px #222;
50
	font-family: Calibri, Arial, sans-serif;
51
	font-size: 12px;
52
	color: #fff;
53
	margin-left: 60px;
54
	text-align: center;
55
}
56
57
.slidermaxValue {
58
	float: right;
59
}
60
61
.binaryLine {
62
	width: 36px;
63
	height: 18px;
64
	border-radius: 10px;
65
	border-color: #555;
66
	border-width: 1px;
67
	border-style: solid;
68
	box-shadow: 2px 2px 2px #444 inset;
69
}
70
71
.binaryMarker {
72
	position: relative;
73
	top: 2px;
74
	width: 11px;
75
	height: 11px;
76
	border-color: #777;
77
	border-style: solid;
78
	border-radius: 6px;
79
	background-color: #fff;
80
	border-width: 1px;
81
	box-shadow: 2px 2px 2px #444;
82
	background: linear-gradient(to bottom, #fff 0%,#e0e0d8 60%);
22.1.1 by Adam Ringhede
Fixes CSS3 for IE
83
	-pie-background: linear-gradient(top, #fff 0%,#e0e0d8 60%);
9.3.2 by Erik Wikström
Updated slider library and created a new demo
84
}