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
|
#container {
background-color: #d0d0d4;
border-radius: 10px;
width: 220px;
height: 300px;
padding: 6px;
}
#sliderbox {
float:left;
width:40px;
height:32px;
font-family:Trebuchet,sans-serif;
font-size:18px;
}
#slider1 {
margin-left:42px;
width:160px;
height:32px;
border-style:none;
border-width:1px;
background-position:center;
background-image:url('sliderline.png');
background-repeat:repeat-x;
}
#slider1marker {
position:relative;
left:60px;
width:14px;
height:32px;
background-image:url('sliderring14.png');
background-repeat:no-repeat;
background-position:center;
}
|