blob: 2cc3d8bd93c1b23abd41189ff94447221e6cdd0b (
plain)
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
|
#scrollwrapper {
padding: 15px 20px;
border: 1px solid #ccc;
float: left;
margin: 10px 25px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.scrollable {
height: 330px;
overflow: hidden;
position: relative;
width: 800px;
float: left;
}
.scrollable .items {
clear: both;
position: absolute;
width: 20000em;
}
.items div {
float: left;
width: 740px;
}
.scrollable img {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
background-color: #fff;
border: 1px solid #ccc;
float: left;
height: 300px;
margin-right: 15px;
}
.scrollable .active {
border: 2px solid #000;
cursor: default;
position: relative;
}
a.browse {
background: url(../img/scrollable.png) no-repeat;
display: block;
width: 30px;
height: 30px;
margin: 150px 10px;
cursor: pointer;
font-size: 1px;
position: absolute;
}
a.right {
background-position: 0 -30px;
clear:right;
margin-right: 0px;
right:25px;
}
a.right:hover {
background-position:-30px -30px;
}
a.right:active {
background-position:-60px -30px;
}
a.left {
margin-left: 0px;
left:25px;
}
a.left:hover {
background-position:-30px 0;
}
a.left:active {
background-position:-60px 0;
}
a.disabled {
visibility: hidden !important;
}
|