-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsimple-gallery.dev.css
More file actions
115 lines (97 loc) · 2.18 KB
/
simple-gallery.dev.css
File metadata and controls
115 lines (97 loc) · 2.18 KB
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
.simplegallery {
width: 100%;
margin-bottom: 50px;
}
/* Newly added code -START */
.simplegallery a img {
display: inline-block !important;
}
/* Newly added code -END */
.simplegallery .thumbnails {
float: left;
overflow: auto;
width: 200px;
}
/* Hide the captions from the thumbnail nav */
.simplegallery .thumbnails dd {
display: none;
}
.simplegallery .largeimage {
float: left;
margin: 0;
padding: 0;
width: 600px;
text-align: center;
position: relative;
margin-bottom: 50px;
background-repeat: no-repeat;
background-position: top left;
}
.simplegallery img {
margin: 0;
}
.simplegallery .clearboth {
clear: both;
}
.simplegallery .simplegallerynavbar {
position: absolute;
bottom: -50px;
right: 0px;
width: 100%;
}
.simplegallery .simplegallerynavbar ul {
list-style-type: none !important;
padding: 0;
white-space: nowrap;
text-align: center;
margin: 0 auto;
width: 15em;
}
.simplegallery .simplegallerynavbar li {
text-align: center;
float: left;
padding: 0.3em;
width: 4em;
height: 2em;
}
.simplegallery .simplegallerynavbar li a {
display: block;
text-decoration: none !important;
font-size: 2em;
}
.simplegallery .simplegallerynavbar .disabled {
visibility: hidden;
}
.simplegallery .imagecaption {
margin: 0;
}
/**** Begin Thumbnail Navigation ****/
.simplegallery .thumbnails.hasthumbnailscroll > div.gallerywrapper {
overflow: hidden;
float: left;
width: 90%;
}
.simplegallery .thumbnails.hasthumbnailscroll div.gallerywrapper div.gallery {
min-width: 2000px; /* This number is automatically set using Javascript */
}
.simplegallery .thumbnails.hasthumbnailscroll .gallery dl.gallery-item {
position: relative;
left: 0;
}
.simplegallery .thumbnailscroll {
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
display: block;
width: 5%;
height: 100%; /* This number is automatically set using Javascript */
}
.simplegallery .thumbnailscroll.thumbnailscroll-prev {
float: left;
background-image: url(img/icon-prev.png);
}
.simplegallery .thumbnailscroll.thumbnailscroll-next {
float: right;
background-image: url(img/icon-next.png);
}
/**** End Thumbnail Navigation ****/