-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotoslider.css
87 lines (74 loc) · 1.25 KB
/
photoslider.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
.photoslider {
}
.photoslider_nav {
position: relative;
border: solid black 1px;
overflow: hidden;
height: 90px;
width: 720px;
margin: auto;
}
.photoslider_thumbBar {
position: absolute;
left: 0px;
top: 0px;
display: block;
margin: 0px;
padding: 0px;
}
.photoslider_thumb {
position: relative;
border: solid black 1px;
width: 50px;
height: 50px;
float: left;
padding: 5px;
margin: 5px;
cursor: pointer;
}
.photoslider_clear {
clear: both;
}
.photoslider_main {
position: relative;
height: 420px;
padding-bottom: 5px;
}
.photoslider_main img {
position: relative;
border: solid #000 10px;
display: block;
margin: auto;
}
.photoslider_caption {
font-weight: bold;
text-align: center;
}
.photoslider_control {
display: none;
text-align: center;
font-weight: bold;
padding-top: 10px;
margin: auto;
height: 30px;
width: 52px;
}
.photoslider_play, .photoslider_stop {
width: 18px;
height: 19px;
margin: auto;
padding: 3px;
cursor: pointer;
text-align: center;
border: solid #fff 1px;
float: left;
}
.photoslider_play {
background: url('/images/play_pause.gif') no-repeat 0px 0px;
}
.photoslider_stop {
background: url('/images/play_pause.gif') no-repeat -25px 0px;
}
.slideshow_disabled {
border-bottom: solid #919191 2px;
}