-
Notifications
You must be signed in to change notification settings - Fork 11
/
jsCarousel-2.0.0.css
161 lines (159 loc) · 2.67 KB
/
jsCarousel-2.0.0.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*Horizontal Orientation CSS*/
.jscarousal-horizontal
{
width: 740px;
height: 118px;
background-color: #121212;
border: solid 1px #7A7677;
margin: 0;
padding: 0;
padding: 22px 8px 22px 8px;
position: relative; /*overflow: hidden;*/
}
.jscarousal-horizontal-back, .jscarousal-horizontal-forward
{
float: left;
width: 23px;
height: 98px;
background-color: #121212;
color: White;
position: relative;
top: 6px;
cursor: pointer;
}
.jscarousal-horizontal-back
{
background-image: url(left_arrow.jpg);
background-repeat: no-repeat;
background-position: left;
}
.jscarousal-horizontal-forward
{
background-image: url(right_arrow.jpg);
background-repeat: no-repeat;
background-position: right;
}
.jscarousal-contents-horizontal
{
width: 690px;
height: 124px;
float: left;
position: relative;
overflow: hidden;
}
.jscarousal-contents-horizontal > div
{
position: absolute;
width: 100%;
height: 124px;
}
.jscarousal-contents-horizontal > div > div
{
float: left;
margin-left: 8px;
margin-right: 8px;
}
.jscarousal-contents-horizontal img
{
width: 120px;
height: 94px;
border: solid 1px #7A7677;
}
/*Horizontal Orientation CSS Ends*/
/*Vertical Orientation CSS Starts*/
.jscarousal-vertical
{
width: 140px;
height: 460px;
background-color: #121212;
border: solid 1px #7A7677;
margin: 0;
padding: 0;
position: relative;
overflow: hidden;
}
.jscarousal-vertical-back, .jscarousal-vertical-forward
{
width: 100%;
height: 30px;
background-color: #121212;
color: White;
position: relative;
cursor: pointer;
z-index:100;
}
.jscarousal-vertical-back
{
background-image: url(top_arrow.jpg);
background-repeat: no-repeat;
background-position: bottom;
}
.jscarousal-vertical-forward
{
background-image: url(bottom_arrow.jpg);
background-repeat: no-repeat;
background-position: top;
}
.jscarousal-contents-vertical
{
overflow: hidden;
width: 140px;
height: 410px;
}
.jscarousal-contents-vertical > div
{
position: absolute;
top: 40px;
width: 100%;
height: 820px;
overflow: hidden;
}
.jscarousal-contents-vertical > div > div
{
width: 140px;
height: 125px;
margin: 8px;
margin-left: 14px;
}
.jscarousal-contents-vertical > div > div span
{
display: block;
width: 70%;
text-align: center;
}
.jscarousal-contents-vertical img
{
width: 110px;
height: 80px;
border: solid 1px #7A7677;
}
/*Vertical Orientation CSS Ends*/
/*Common*/
.hidden
{
display: none;
}
.visible
{
display: block;
}
.thumbnail-active
{
filter: alpha(opacity=100);
opacity: 1.0;
cursor: pointer;
}
.thumbnail-inactive
{
filter: alpha(opacity=20);
opacity: 0.2;
cursor: pointer;
}
.thumbnail-text
{
color: #7A7677;
font-weight: bold;
text-align: left;
display: block;
padding: 10px 2px 2px 0px;
}