-
Notifications
You must be signed in to change notification settings - Fork 14
/
gallerie.css
195 lines (167 loc) · 2.98 KB
/
gallerie.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* Loading Image */
div.gallerie-loading {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 126px;
height: 22px;
margin: auto;
z-index: 10000;
background: url("loading.gif");
}
/* Image Index and Title Text */
.gallerie-text {
max-width: 60%;
min-width: 200px;
margin: 0px 10px;
vertical-align: bottom;
}
.gallerie-text div {
width: 100%;
text-overflow: ellipsis;
}
/* Image Title Text */
.gallerie-title {
}
/* Image Index */
.gallerie-index {
}
/* Gallerie Controls */
.gallerie-control {
font-size: 30px;
min-width: 40px;
min-height: 40px;
padding: 5px;
margin: 0px;
border: 2px solid transparent;
vertical-align: top;
border-radius: 100%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all 500ms;
-webkit-transition: all 500ms;
-moz-transition: all 500ms;
-ms-transition: all 500ms;
-o-transition: all 500ms;
}
.gallerie-control:hover {
background: #222;
border: 2px solid white;
border-radius: 100%;
cursor: pointer;
}
.gallerie-control-previous{
}
.gallerie-control-next {
}
/* Gallery Overlay */
.gallerie-overlay {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color:rgba(0,0,0,0.9);
z-index: 1000;
}
/* Image Box Container */
.gallerie-imagebox {
width: 100%;
height: 70%;
position: relative;
top: 0px;
left: 0px;
margin: 20px 0px;
}
.gallerie-imagebox img {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
margin: auto;
border: 4px solid white;
border-radius: 5px;
transition: all 500ms;
-webkit-transition: all 500ms;
-moz-transition: all 500ms;
-ms-transition: all 500ms;
-o-transition: all 500ms;
}
.gallerie-imagebox:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
/* Caption Box Container */
.gallerie-captionbox {
color: white;
width: 100%;
height: 50px;
position: relative;
top: 0px;
left: 0px;
text-align: center;
padding: 5px 0px 15px 0px;
}
.gallerie-captionbox:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
.gallerie-captionbox > div {
display: inline-block;
}
/* Thumb Box Container */
.gallerie-thumbbox {
height: 100px;
min-width: 100%;
position: relative;
top: 0px;
left: 0px;
margin: 0px auto;
text-align: center;
float: left;
white-space: nowrap;
}
.gallerie-thumbbox ul {
position: relative;
list-style-type: none;
margin: 0px;
padding: 0px;
left: 0px;
}
.gallerie-thumbbox li {
width: 75px;
height: 75px;
display: inline-block;
text-align: center;
margin: 0px 10px 0px 10px;
cursor: pointer;
}
.gallerie-thumbbox img {
max-width: 100%;
max-height: 100%;
border: 2px solid #fff;
border-radius: 5px;
opacity: 0.60;
vertical-align: middle;
}
.gallerie-thumbbox-hover img {
opacity: 1.0;
border-color: #0ff;
}
.gallerie-thumbbox-selected img {
opacity: 1.0;
border-color: #ff0;
}