lightgallery-rails 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +1 -0
- data/lib/lightgallery/rails.rb +7 -0
- data/lib/lightgallery/rails/engine.rb +6 -0
- data/lib/lightgallery/rails/version.rb +5 -0
- data/vendor/assets/fonts/lightgallery/lg.eot +0 -0
- data/vendor/assets/fonts/lightgallery/lg.svg +47 -0
- data/vendor/assets/fonts/lightgallery/lg.ttf +0 -0
- data/vendor/assets/fonts/lightgallery/lg.woff +0 -0
- data/vendor/assets/images/lightgallery/loading.gif +0 -0
- data/vendor/assets/images/lightgallery/video-play.png +0 -0
- data/vendor/assets/images/lightgallery/vimeo-play.png +0 -0
- data/vendor/assets/images/lightgallery/youtube-play.png +0 -0
- data/vendor/assets/javascripts/lightgallery.autoplay.js +206 -0
- data/vendor/assets/javascripts/lightgallery.autoplay.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.fullscreen.js +116 -0
- data/vendor/assets/javascripts/lightgallery.fullscreen.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.hash.js +100 -0
- data/vendor/assets/javascripts/lightgallery.hash.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.js +1364 -0
- data/vendor/assets/javascripts/lightgallery.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.pager.js +105 -0
- data/vendor/assets/javascripts/lightgallery.pager.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.share.js +94 -0
- data/vendor/assets/javascripts/lightgallery.share.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.thumbnail.js +473 -0
- data/vendor/assets/javascripts/lightgallery.thumbnail.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.video.js +317 -0
- data/vendor/assets/javascripts/lightgallery.video.min.js +4 -0
- data/vendor/assets/javascripts/lightgallery.zoom.js +531 -0
- data/vendor/assets/javascripts/lightgallery.zoom.min.js +4 -0
- data/vendor/assets/stylesheets/lg-fb-comment-box.scss +57 -0
- data/vendor/assets/stylesheets/lg-transitions.css +779 -0
- data/vendor/assets/stylesheets/lightgallery.scss +978 -0
- metadata +104 -0
@@ -0,0 +1,978 @@
|
|
1
|
+
/*! lightgallery - v1.4.0 - 2017-06-04
|
2
|
+
* http://sachinchoolur.github.io/lightGallery/
|
3
|
+
* Copyright (c) 2017 Sachin N; Licensed GPLv3 */
|
4
|
+
@font-face {
|
5
|
+
font-family: 'lg';
|
6
|
+
src: font-url("lightgallery/lg.eot?n1z373");
|
7
|
+
src: font-url("lightgallery/lg.eot?#iefixn1z373") format("embedded-opentype"), font-url("lightgallery/lg.woff?n1z373") format("woff"), font-url("lightgallery/lg.ttf?n1z373") format("truetype"), font-url("lightgallery/lg.svg?n1z373#lg") format("svg");
|
8
|
+
font-weight: normal;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
.lg-icon {
|
12
|
+
font-family: 'lg';
|
13
|
+
speak: none;
|
14
|
+
font-style: normal;
|
15
|
+
font-weight: normal;
|
16
|
+
font-variant: normal;
|
17
|
+
text-transform: none;
|
18
|
+
line-height: 1;
|
19
|
+
/* Better Font Rendering =========== */
|
20
|
+
-webkit-font-smoothing: antialiased;
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
22
|
+
}
|
23
|
+
|
24
|
+
.lg-actions .lg-next, .lg-actions .lg-prev {
|
25
|
+
background-color: rgba(0, 0, 0, 0.45);
|
26
|
+
border-radius: 2px;
|
27
|
+
color: #999;
|
28
|
+
cursor: pointer;
|
29
|
+
display: block;
|
30
|
+
font-size: 22px;
|
31
|
+
margin-top: -10px;
|
32
|
+
padding: 8px 10px 9px;
|
33
|
+
position: absolute;
|
34
|
+
top: 50%;
|
35
|
+
z-index: 1080;
|
36
|
+
border: none;
|
37
|
+
outline: none;
|
38
|
+
}
|
39
|
+
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
|
40
|
+
pointer-events: none;
|
41
|
+
opacity: 0.5;
|
42
|
+
}
|
43
|
+
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
|
44
|
+
color: #FFF;
|
45
|
+
}
|
46
|
+
.lg-actions .lg-next {
|
47
|
+
right: 20px;
|
48
|
+
}
|
49
|
+
.lg-actions .lg-next:before {
|
50
|
+
content: "\e095";
|
51
|
+
}
|
52
|
+
.lg-actions .lg-prev {
|
53
|
+
left: 20px;
|
54
|
+
}
|
55
|
+
.lg-actions .lg-prev:after {
|
56
|
+
content: "\e094";
|
57
|
+
}
|
58
|
+
|
59
|
+
@-webkit-keyframes lg-right-end {
|
60
|
+
0% {
|
61
|
+
left: 0;
|
62
|
+
}
|
63
|
+
50% {
|
64
|
+
left: -30px;
|
65
|
+
}
|
66
|
+
100% {
|
67
|
+
left: 0;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
@-moz-keyframes lg-right-end {
|
71
|
+
0% {
|
72
|
+
left: 0;
|
73
|
+
}
|
74
|
+
50% {
|
75
|
+
left: -30px;
|
76
|
+
}
|
77
|
+
100% {
|
78
|
+
left: 0;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
@-ms-keyframes lg-right-end {
|
82
|
+
0% {
|
83
|
+
left: 0;
|
84
|
+
}
|
85
|
+
50% {
|
86
|
+
left: -30px;
|
87
|
+
}
|
88
|
+
100% {
|
89
|
+
left: 0;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
@keyframes lg-right-end {
|
93
|
+
0% {
|
94
|
+
left: 0;
|
95
|
+
}
|
96
|
+
50% {
|
97
|
+
left: -30px;
|
98
|
+
}
|
99
|
+
100% {
|
100
|
+
left: 0;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
@-webkit-keyframes lg-left-end {
|
104
|
+
0% {
|
105
|
+
left: 0;
|
106
|
+
}
|
107
|
+
50% {
|
108
|
+
left: 30px;
|
109
|
+
}
|
110
|
+
100% {
|
111
|
+
left: 0;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
@-moz-keyframes lg-left-end {
|
115
|
+
0% {
|
116
|
+
left: 0;
|
117
|
+
}
|
118
|
+
50% {
|
119
|
+
left: 30px;
|
120
|
+
}
|
121
|
+
100% {
|
122
|
+
left: 0;
|
123
|
+
}
|
124
|
+
}
|
125
|
+
@-ms-keyframes lg-left-end {
|
126
|
+
0% {
|
127
|
+
left: 0;
|
128
|
+
}
|
129
|
+
50% {
|
130
|
+
left: 30px;
|
131
|
+
}
|
132
|
+
100% {
|
133
|
+
left: 0;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
@keyframes lg-left-end {
|
137
|
+
0% {
|
138
|
+
left: 0;
|
139
|
+
}
|
140
|
+
50% {
|
141
|
+
left: 30px;
|
142
|
+
}
|
143
|
+
100% {
|
144
|
+
left: 0;
|
145
|
+
}
|
146
|
+
}
|
147
|
+
.lg-outer.lg-right-end .lg-object {
|
148
|
+
-webkit-animation: lg-right-end 0.3s;
|
149
|
+
-o-animation: lg-right-end 0.3s;
|
150
|
+
animation: lg-right-end 0.3s;
|
151
|
+
position: relative;
|
152
|
+
}
|
153
|
+
.lg-outer.lg-left-end .lg-object {
|
154
|
+
-webkit-animation: lg-left-end 0.3s;
|
155
|
+
-o-animation: lg-left-end 0.3s;
|
156
|
+
animation: lg-left-end 0.3s;
|
157
|
+
position: relative;
|
158
|
+
}
|
159
|
+
|
160
|
+
.lg-toolbar {
|
161
|
+
z-index: 1082;
|
162
|
+
left: 0;
|
163
|
+
position: absolute;
|
164
|
+
top: 0;
|
165
|
+
width: 100%;
|
166
|
+
background-color: rgba(0, 0, 0, 0.45);
|
167
|
+
}
|
168
|
+
.lg-toolbar .lg-icon {
|
169
|
+
color: #999;
|
170
|
+
cursor: pointer;
|
171
|
+
float: right;
|
172
|
+
font-size: 24px;
|
173
|
+
height: 47px;
|
174
|
+
line-height: 27px;
|
175
|
+
padding: 10px 0;
|
176
|
+
text-align: center;
|
177
|
+
width: 50px;
|
178
|
+
text-decoration: none !important;
|
179
|
+
outline: medium none;
|
180
|
+
-webkit-transition: color 0.2s linear;
|
181
|
+
-o-transition: color 0.2s linear;
|
182
|
+
transition: color 0.2s linear;
|
183
|
+
}
|
184
|
+
.lg-toolbar .lg-icon:hover {
|
185
|
+
color: #FFF;
|
186
|
+
}
|
187
|
+
.lg-toolbar .lg-close:after {
|
188
|
+
content: "\e070";
|
189
|
+
}
|
190
|
+
.lg-toolbar .lg-download:after {
|
191
|
+
content: "\e0f2";
|
192
|
+
}
|
193
|
+
|
194
|
+
.lg-sub-html {
|
195
|
+
background-color: rgba(0, 0, 0, 0.45);
|
196
|
+
bottom: 0;
|
197
|
+
color: #EEE;
|
198
|
+
font-size: 16px;
|
199
|
+
left: 0;
|
200
|
+
padding: 10px 40px;
|
201
|
+
position: fixed;
|
202
|
+
right: 0;
|
203
|
+
text-align: center;
|
204
|
+
z-index: 1080;
|
205
|
+
}
|
206
|
+
.lg-sub-html h4 {
|
207
|
+
margin: 0;
|
208
|
+
font-size: 13px;
|
209
|
+
font-weight: bold;
|
210
|
+
}
|
211
|
+
.lg-sub-html p {
|
212
|
+
font-size: 12px;
|
213
|
+
margin: 5px 0 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
#lg-counter {
|
217
|
+
color: #999;
|
218
|
+
display: inline-block;
|
219
|
+
font-size: 16px;
|
220
|
+
padding-left: 20px;
|
221
|
+
padding-top: 12px;
|
222
|
+
vertical-align: middle;
|
223
|
+
}
|
224
|
+
|
225
|
+
.lg-toolbar, .lg-prev, .lg-next {
|
226
|
+
opacity: 1;
|
227
|
+
-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
228
|
+
-moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
229
|
+
-o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
230
|
+
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
|
231
|
+
}
|
232
|
+
|
233
|
+
.lg-hide-items .lg-prev {
|
234
|
+
opacity: 0;
|
235
|
+
-webkit-transform: translate3d(-10px, 0, 0);
|
236
|
+
transform: translate3d(-10px, 0, 0);
|
237
|
+
}
|
238
|
+
.lg-hide-items .lg-next {
|
239
|
+
opacity: 0;
|
240
|
+
-webkit-transform: translate3d(10px, 0, 0);
|
241
|
+
transform: translate3d(10px, 0, 0);
|
242
|
+
}
|
243
|
+
.lg-hide-items .lg-toolbar {
|
244
|
+
opacity: 0;
|
245
|
+
-webkit-transform: translate3d(0, -10px, 0);
|
246
|
+
transform: translate3d(0, -10px, 0);
|
247
|
+
}
|
248
|
+
|
249
|
+
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
|
250
|
+
-webkit-transform: scale3d(0.5, 0.5, 0.5);
|
251
|
+
transform: scale3d(0.5, 0.5, 0.5);
|
252
|
+
opacity: 0;
|
253
|
+
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
254
|
+
-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
255
|
+
-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
256
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
257
|
+
-webkit-transform-origin: 50% 50%;
|
258
|
+
-moz-transform-origin: 50% 50%;
|
259
|
+
-ms-transform-origin: 50% 50%;
|
260
|
+
transform-origin: 50% 50%;
|
261
|
+
}
|
262
|
+
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
|
263
|
+
-webkit-transform: scale3d(1, 1, 1);
|
264
|
+
transform: scale3d(1, 1, 1);
|
265
|
+
opacity: 1;
|
266
|
+
}
|
267
|
+
|
268
|
+
.lg-outer .lg-thumb-outer {
|
269
|
+
background-color: #0D0A0A;
|
270
|
+
bottom: 0;
|
271
|
+
position: absolute;
|
272
|
+
width: 100%;
|
273
|
+
z-index: 1080;
|
274
|
+
max-height: 350px;
|
275
|
+
-webkit-transform: translate3d(0, 100%, 0);
|
276
|
+
transform: translate3d(0, 100%, 0);
|
277
|
+
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
278
|
+
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
279
|
+
-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
280
|
+
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
281
|
+
}
|
282
|
+
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
|
283
|
+
cursor: -webkit-grab;
|
284
|
+
cursor: -moz-grab;
|
285
|
+
cursor: -o-grab;
|
286
|
+
cursor: -ms-grab;
|
287
|
+
cursor: grab;
|
288
|
+
}
|
289
|
+
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
|
290
|
+
cursor: move;
|
291
|
+
cursor: -webkit-grabbing;
|
292
|
+
cursor: -moz-grabbing;
|
293
|
+
cursor: -o-grabbing;
|
294
|
+
cursor: -ms-grabbing;
|
295
|
+
cursor: grabbing;
|
296
|
+
}
|
297
|
+
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
|
298
|
+
-webkit-transition-duration: 0s !important;
|
299
|
+
transition-duration: 0s !important;
|
300
|
+
}
|
301
|
+
.lg-outer.lg-thumb-open .lg-thumb-outer {
|
302
|
+
-webkit-transform: translate3d(0, 0%, 0);
|
303
|
+
transform: translate3d(0, 0%, 0);
|
304
|
+
}
|
305
|
+
.lg-outer .lg-thumb {
|
306
|
+
padding: 10px 0;
|
307
|
+
height: 100%;
|
308
|
+
margin-bottom: -5px;
|
309
|
+
}
|
310
|
+
.lg-outer .lg-thumb-item {
|
311
|
+
border-radius: 5px;
|
312
|
+
cursor: pointer;
|
313
|
+
float: left;
|
314
|
+
overflow: hidden;
|
315
|
+
height: 100%;
|
316
|
+
border: 2px solid #FFF;
|
317
|
+
border-radius: 4px;
|
318
|
+
margin-bottom: 5px;
|
319
|
+
}
|
320
|
+
@media (min-width: 1025px) {
|
321
|
+
.lg-outer .lg-thumb-item {
|
322
|
+
-webkit-transition: border-color 0.25s ease;
|
323
|
+
-o-transition: border-color 0.25s ease;
|
324
|
+
transition: border-color 0.25s ease;
|
325
|
+
}
|
326
|
+
}
|
327
|
+
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
|
328
|
+
border-color: #a90707;
|
329
|
+
}
|
330
|
+
.lg-outer .lg-thumb-item img {
|
331
|
+
width: 100%;
|
332
|
+
height: 100%;
|
333
|
+
object-fit: cover;
|
334
|
+
}
|
335
|
+
.lg-outer.lg-has-thumb .lg-item {
|
336
|
+
padding-bottom: 120px;
|
337
|
+
}
|
338
|
+
.lg-outer.lg-can-toggle .lg-item {
|
339
|
+
padding-bottom: 0;
|
340
|
+
}
|
341
|
+
.lg-outer.lg-pull-caption-up .lg-sub-html {
|
342
|
+
-webkit-transition: bottom 0.25s ease;
|
343
|
+
-o-transition: bottom 0.25s ease;
|
344
|
+
transition: bottom 0.25s ease;
|
345
|
+
}
|
346
|
+
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
|
347
|
+
bottom: 100px;
|
348
|
+
}
|
349
|
+
.lg-outer .lg-toogle-thumb {
|
350
|
+
background-color: #0D0A0A;
|
351
|
+
border-radius: 2px 2px 0 0;
|
352
|
+
color: #999;
|
353
|
+
cursor: pointer;
|
354
|
+
font-size: 24px;
|
355
|
+
height: 39px;
|
356
|
+
line-height: 27px;
|
357
|
+
padding: 5px 0;
|
358
|
+
position: absolute;
|
359
|
+
right: 20px;
|
360
|
+
text-align: center;
|
361
|
+
top: -39px;
|
362
|
+
width: 50px;
|
363
|
+
}
|
364
|
+
.lg-outer .lg-toogle-thumb:after {
|
365
|
+
content: "\e1ff";
|
366
|
+
}
|
367
|
+
.lg-outer .lg-toogle-thumb:hover {
|
368
|
+
color: #FFF;
|
369
|
+
}
|
370
|
+
|
371
|
+
.lg-outer .lg-video-cont {
|
372
|
+
display: inline-block;
|
373
|
+
vertical-align: middle;
|
374
|
+
max-width: 1140px;
|
375
|
+
max-height: 100%;
|
376
|
+
width: 100%;
|
377
|
+
padding: 0 5px;
|
378
|
+
}
|
379
|
+
.lg-outer .lg-video {
|
380
|
+
width: 100%;
|
381
|
+
height: 0;
|
382
|
+
padding-bottom: 56.25%;
|
383
|
+
overflow: hidden;
|
384
|
+
position: relative;
|
385
|
+
}
|
386
|
+
.lg-outer .lg-video .lg-object {
|
387
|
+
display: inline-block;
|
388
|
+
position: absolute;
|
389
|
+
top: 0;
|
390
|
+
left: 0;
|
391
|
+
width: 100% !important;
|
392
|
+
height: 100% !important;
|
393
|
+
}
|
394
|
+
.lg-outer .lg-video .lg-video-play {
|
395
|
+
width: 84px;
|
396
|
+
height: 59px;
|
397
|
+
position: absolute;
|
398
|
+
left: 50%;
|
399
|
+
top: 50%;
|
400
|
+
margin-left: -42px;
|
401
|
+
margin-top: -30px;
|
402
|
+
z-index: 1080;
|
403
|
+
cursor: pointer;
|
404
|
+
}
|
405
|
+
.lg-outer .lg-has-vimeo .lg-video-play {
|
406
|
+
background: image-url("lightgallery/vimeo-play.png") no-repeat scroll 0 0 transparent;
|
407
|
+
}
|
408
|
+
.lg-outer .lg-has-vimeo:hover .lg-video-play {
|
409
|
+
background: image-url("lightgallery/vimeo-play.png") no-repeat scroll 0 -58px transparent;
|
410
|
+
}
|
411
|
+
.lg-outer .lg-has-html5 .lg-video-play {
|
412
|
+
background: transparent image-url("lightgallery/video-play.png") no-repeat scroll 0 0;
|
413
|
+
height: 64px;
|
414
|
+
margin-left: -32px;
|
415
|
+
margin-top: -32px;
|
416
|
+
width: 64px;
|
417
|
+
opacity: 0.8;
|
418
|
+
}
|
419
|
+
.lg-outer .lg-has-html5:hover .lg-video-play {
|
420
|
+
opacity: 1;
|
421
|
+
}
|
422
|
+
.lg-outer .lg-has-youtube .lg-video-play {
|
423
|
+
background: image-url("lightgallery/youtube-play.png") no-repeat scroll 0 0 transparent;
|
424
|
+
}
|
425
|
+
.lg-outer .lg-has-youtube:hover .lg-video-play {
|
426
|
+
background: image-url("lightgallery/youtube-play.png") no-repeat scroll 0 -60px transparent;
|
427
|
+
}
|
428
|
+
.lg-outer .lg-video-object {
|
429
|
+
width: 100% !important;
|
430
|
+
height: 100% !important;
|
431
|
+
position: absolute;
|
432
|
+
top: 0;
|
433
|
+
left: 0;
|
434
|
+
}
|
435
|
+
.lg-outer .lg-has-video .lg-video-object {
|
436
|
+
visibility: hidden;
|
437
|
+
}
|
438
|
+
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
|
439
|
+
display: none;
|
440
|
+
}
|
441
|
+
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
|
442
|
+
visibility: visible;
|
443
|
+
}
|
444
|
+
|
445
|
+
.lg-progress-bar {
|
446
|
+
background-color: #333;
|
447
|
+
height: 5px;
|
448
|
+
left: 0;
|
449
|
+
position: absolute;
|
450
|
+
top: 0;
|
451
|
+
width: 100%;
|
452
|
+
z-index: 1083;
|
453
|
+
opacity: 0;
|
454
|
+
-webkit-transition: opacity 0.08s ease 0s;
|
455
|
+
-moz-transition: opacity 0.08s ease 0s;
|
456
|
+
-o-transition: opacity 0.08s ease 0s;
|
457
|
+
transition: opacity 0.08s ease 0s;
|
458
|
+
}
|
459
|
+
.lg-progress-bar .lg-progress {
|
460
|
+
background-color: #a90707;
|
461
|
+
height: 5px;
|
462
|
+
width: 0;
|
463
|
+
}
|
464
|
+
.lg-progress-bar.lg-start .lg-progress {
|
465
|
+
width: 100%;
|
466
|
+
}
|
467
|
+
.lg-show-autoplay .lg-progress-bar {
|
468
|
+
opacity: 1;
|
469
|
+
}
|
470
|
+
|
471
|
+
.lg-autoplay-button:after {
|
472
|
+
content: "\e01d";
|
473
|
+
}
|
474
|
+
.lg-show-autoplay .lg-autoplay-button:after {
|
475
|
+
content: "\e01a";
|
476
|
+
}
|
477
|
+
|
478
|
+
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
|
479
|
+
-webkit-transition-duration: 0s;
|
480
|
+
transition-duration: 0s;
|
481
|
+
}
|
482
|
+
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
483
|
+
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
484
|
+
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
485
|
+
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
486
|
+
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
487
|
+
}
|
488
|
+
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
489
|
+
-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
490
|
+
-moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
491
|
+
-o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
492
|
+
transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
|
493
|
+
}
|
494
|
+
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
|
495
|
+
-webkit-transform: translate3d(0, 0, 0);
|
496
|
+
transform: translate3d(0, 0, 0);
|
497
|
+
-webkit-backface-visibility: hidden;
|
498
|
+
-moz-backface-visibility: hidden;
|
499
|
+
backface-visibility: hidden;
|
500
|
+
}
|
501
|
+
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
|
502
|
+
-webkit-transform: scale3d(1, 1, 1);
|
503
|
+
transform: scale3d(1, 1, 1);
|
504
|
+
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
505
|
+
-moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
506
|
+
-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
507
|
+
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
|
508
|
+
-webkit-transform-origin: 0 0;
|
509
|
+
-moz-transform-origin: 0 0;
|
510
|
+
-ms-transform-origin: 0 0;
|
511
|
+
transform-origin: 0 0;
|
512
|
+
-webkit-backface-visibility: hidden;
|
513
|
+
-moz-backface-visibility: hidden;
|
514
|
+
backface-visibility: hidden;
|
515
|
+
}
|
516
|
+
|
517
|
+
#lg-zoom-in:after {
|
518
|
+
content: "\e311";
|
519
|
+
}
|
520
|
+
|
521
|
+
#lg-actual-size {
|
522
|
+
font-size: 20px;
|
523
|
+
}
|
524
|
+
#lg-actual-size:after {
|
525
|
+
content: "\e033";
|
526
|
+
}
|
527
|
+
|
528
|
+
#lg-zoom-out {
|
529
|
+
opacity: 0.5;
|
530
|
+
pointer-events: none;
|
531
|
+
}
|
532
|
+
#lg-zoom-out:after {
|
533
|
+
content: "\e312";
|
534
|
+
}
|
535
|
+
.lg-zoomed #lg-zoom-out {
|
536
|
+
opacity: 1;
|
537
|
+
pointer-events: auto;
|
538
|
+
}
|
539
|
+
|
540
|
+
.lg-outer .lg-pager-outer {
|
541
|
+
bottom: 60px;
|
542
|
+
left: 0;
|
543
|
+
position: absolute;
|
544
|
+
right: 0;
|
545
|
+
text-align: center;
|
546
|
+
z-index: 1080;
|
547
|
+
height: 10px;
|
548
|
+
}
|
549
|
+
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
|
550
|
+
overflow: visible;
|
551
|
+
}
|
552
|
+
.lg-outer .lg-pager-cont {
|
553
|
+
cursor: pointer;
|
554
|
+
display: inline-block;
|
555
|
+
overflow: hidden;
|
556
|
+
position: relative;
|
557
|
+
vertical-align: top;
|
558
|
+
margin: 0 5px;
|
559
|
+
}
|
560
|
+
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
|
561
|
+
opacity: 1;
|
562
|
+
-webkit-transform: translate3d(0, 0, 0);
|
563
|
+
transform: translate3d(0, 0, 0);
|
564
|
+
}
|
565
|
+
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
|
566
|
+
box-shadow: 0 0 0 2px white inset;
|
567
|
+
}
|
568
|
+
.lg-outer .lg-pager-thumb-cont {
|
569
|
+
background-color: #fff;
|
570
|
+
color: #FFF;
|
571
|
+
bottom: 100%;
|
572
|
+
height: 83px;
|
573
|
+
left: 0;
|
574
|
+
margin-bottom: 20px;
|
575
|
+
margin-left: -60px;
|
576
|
+
opacity: 0;
|
577
|
+
padding: 5px;
|
578
|
+
position: absolute;
|
579
|
+
width: 120px;
|
580
|
+
border-radius: 3px;
|
581
|
+
-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
|
582
|
+
-moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
|
583
|
+
-o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
|
584
|
+
transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
|
585
|
+
-webkit-transform: translate3d(0, 5px, 0);
|
586
|
+
transform: translate3d(0, 5px, 0);
|
587
|
+
}
|
588
|
+
.lg-outer .lg-pager-thumb-cont img {
|
589
|
+
width: 100%;
|
590
|
+
height: 100%;
|
591
|
+
}
|
592
|
+
.lg-outer .lg-pager {
|
593
|
+
background-color: rgba(255, 255, 255, 0.5);
|
594
|
+
border-radius: 50%;
|
595
|
+
box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
|
596
|
+
display: block;
|
597
|
+
height: 12px;
|
598
|
+
-webkit-transition: box-shadow 0.3s ease 0s;
|
599
|
+
-o-transition: box-shadow 0.3s ease 0s;
|
600
|
+
transition: box-shadow 0.3s ease 0s;
|
601
|
+
width: 12px;
|
602
|
+
}
|
603
|
+
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
|
604
|
+
box-shadow: 0 0 0 8px white inset;
|
605
|
+
}
|
606
|
+
.lg-outer .lg-caret {
|
607
|
+
border-left: 10px solid transparent;
|
608
|
+
border-right: 10px solid transparent;
|
609
|
+
border-top: 10px dashed;
|
610
|
+
bottom: -10px;
|
611
|
+
display: inline-block;
|
612
|
+
height: 0;
|
613
|
+
left: 50%;
|
614
|
+
margin-left: -5px;
|
615
|
+
position: absolute;
|
616
|
+
vertical-align: middle;
|
617
|
+
width: 0;
|
618
|
+
}
|
619
|
+
|
620
|
+
.lg-fullscreen:after {
|
621
|
+
content: "\e20c";
|
622
|
+
}
|
623
|
+
.lg-fullscreen-on .lg-fullscreen:after {
|
624
|
+
content: "\e20d";
|
625
|
+
}
|
626
|
+
|
627
|
+
.lg-outer #lg-dropdown-overlay {
|
628
|
+
background-color: rgba(0, 0, 0, 0.25);
|
629
|
+
bottom: 0;
|
630
|
+
cursor: default;
|
631
|
+
left: 0;
|
632
|
+
position: fixed;
|
633
|
+
right: 0;
|
634
|
+
top: 0;
|
635
|
+
z-index: 1081;
|
636
|
+
opacity: 0;
|
637
|
+
visibility: hidden;
|
638
|
+
-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
|
639
|
+
-o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
|
640
|
+
transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
|
641
|
+
}
|
642
|
+
.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
|
643
|
+
-webkit-transition-delay: 0s;
|
644
|
+
transition-delay: 0s;
|
645
|
+
-moz-transform: translate3d(0, 0px, 0);
|
646
|
+
-o-transform: translate3d(0, 0px, 0);
|
647
|
+
-ms-transform: translate3d(0, 0px, 0);
|
648
|
+
-webkit-transform: translate3d(0, 0px, 0);
|
649
|
+
transform: translate3d(0, 0px, 0);
|
650
|
+
opacity: 1;
|
651
|
+
visibility: visible;
|
652
|
+
}
|
653
|
+
.lg-outer.lg-dropdown-active #lg-share {
|
654
|
+
color: #FFF;
|
655
|
+
}
|
656
|
+
.lg-outer .lg-dropdown {
|
657
|
+
background-color: #fff;
|
658
|
+
border-radius: 2px;
|
659
|
+
font-size: 14px;
|
660
|
+
list-style-type: none;
|
661
|
+
margin: 0;
|
662
|
+
padding: 10px 0;
|
663
|
+
position: absolute;
|
664
|
+
right: 0;
|
665
|
+
text-align: left;
|
666
|
+
top: 50px;
|
667
|
+
opacity: 0;
|
668
|
+
visibility: hidden;
|
669
|
+
-moz-transform: translate3d(0, 5px, 0);
|
670
|
+
-o-transform: translate3d(0, 5px, 0);
|
671
|
+
-ms-transform: translate3d(0, 5px, 0);
|
672
|
+
-webkit-transform: translate3d(0, 5px, 0);
|
673
|
+
transform: translate3d(0, 5px, 0);
|
674
|
+
-webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
|
675
|
+
-moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
|
676
|
+
-o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
|
677
|
+
transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
|
678
|
+
}
|
679
|
+
.lg-outer .lg-dropdown:after {
|
680
|
+
content: "";
|
681
|
+
display: block;
|
682
|
+
height: 0;
|
683
|
+
width: 0;
|
684
|
+
position: absolute;
|
685
|
+
border: 8px solid transparent;
|
686
|
+
border-bottom-color: #FFF;
|
687
|
+
right: 16px;
|
688
|
+
top: -16px;
|
689
|
+
}
|
690
|
+
.lg-outer .lg-dropdown > li:last-child {
|
691
|
+
margin-bottom: 0px;
|
692
|
+
}
|
693
|
+
.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
|
694
|
+
color: #333;
|
695
|
+
}
|
696
|
+
.lg-outer .lg-dropdown a {
|
697
|
+
color: #333;
|
698
|
+
display: block;
|
699
|
+
white-space: pre;
|
700
|
+
padding: 4px 12px;
|
701
|
+
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
|
702
|
+
font-size: 12px;
|
703
|
+
}
|
704
|
+
.lg-outer .lg-dropdown a:hover {
|
705
|
+
background-color: rgba(0, 0, 0, 0.07);
|
706
|
+
}
|
707
|
+
.lg-outer .lg-dropdown .lg-dropdown-text {
|
708
|
+
display: inline-block;
|
709
|
+
line-height: 1;
|
710
|
+
margin-top: -3px;
|
711
|
+
vertical-align: middle;
|
712
|
+
}
|
713
|
+
.lg-outer .lg-dropdown .lg-icon {
|
714
|
+
color: #333;
|
715
|
+
display: inline-block;
|
716
|
+
float: none;
|
717
|
+
font-size: 20px;
|
718
|
+
height: auto;
|
719
|
+
line-height: 1;
|
720
|
+
margin-right: 8px;
|
721
|
+
padding: 0;
|
722
|
+
vertical-align: middle;
|
723
|
+
width: auto;
|
724
|
+
}
|
725
|
+
.lg-outer #lg-share {
|
726
|
+
position: relative;
|
727
|
+
}
|
728
|
+
.lg-outer #lg-share:after {
|
729
|
+
content: "\e80d";
|
730
|
+
}
|
731
|
+
.lg-outer #lg-share-facebook .lg-icon {
|
732
|
+
color: #3b5998;
|
733
|
+
}
|
734
|
+
.lg-outer #lg-share-facebook .lg-icon:after {
|
735
|
+
content: "\e901";
|
736
|
+
}
|
737
|
+
.lg-outer #lg-share-twitter .lg-icon {
|
738
|
+
color: #00aced;
|
739
|
+
}
|
740
|
+
.lg-outer #lg-share-twitter .lg-icon:after {
|
741
|
+
content: "\e904";
|
742
|
+
}
|
743
|
+
.lg-outer #lg-share-googleplus .lg-icon {
|
744
|
+
color: #dd4b39;
|
745
|
+
}
|
746
|
+
.lg-outer #lg-share-googleplus .lg-icon:after {
|
747
|
+
content: "\e902";
|
748
|
+
}
|
749
|
+
.lg-outer #lg-share-pinterest .lg-icon {
|
750
|
+
color: #cb2027;
|
751
|
+
}
|
752
|
+
.lg-outer #lg-share-pinterest .lg-icon:after {
|
753
|
+
content: "\e903";
|
754
|
+
}
|
755
|
+
|
756
|
+
.lg-group:after {
|
757
|
+
content: "";
|
758
|
+
display: table;
|
759
|
+
clear: both;
|
760
|
+
}
|
761
|
+
|
762
|
+
.lg-outer {
|
763
|
+
width: 100%;
|
764
|
+
height: 100%;
|
765
|
+
position: fixed;
|
766
|
+
top: 0;
|
767
|
+
left: 0;
|
768
|
+
z-index: 1050;
|
769
|
+
text-align: left;
|
770
|
+
opacity: 0;
|
771
|
+
-webkit-transition: opacity 0.15s ease 0s;
|
772
|
+
-o-transition: opacity 0.15s ease 0s;
|
773
|
+
transition: opacity 0.15s ease 0s;
|
774
|
+
}
|
775
|
+
.lg-outer * {
|
776
|
+
-webkit-box-sizing: border-box;
|
777
|
+
-moz-box-sizing: border-box;
|
778
|
+
box-sizing: border-box;
|
779
|
+
}
|
780
|
+
.lg-outer.lg-visible {
|
781
|
+
opacity: 1;
|
782
|
+
}
|
783
|
+
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
|
784
|
+
-webkit-transition-duration: inherit !important;
|
785
|
+
transition-duration: inherit !important;
|
786
|
+
-webkit-transition-timing-function: inherit !important;
|
787
|
+
transition-timing-function: inherit !important;
|
788
|
+
}
|
789
|
+
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
|
790
|
+
-webkit-transition-duration: 0s !important;
|
791
|
+
transition-duration: 0s !important;
|
792
|
+
opacity: 1;
|
793
|
+
}
|
794
|
+
.lg-outer.lg-grab img.lg-object {
|
795
|
+
cursor: -webkit-grab;
|
796
|
+
cursor: -moz-grab;
|
797
|
+
cursor: -o-grab;
|
798
|
+
cursor: -ms-grab;
|
799
|
+
cursor: grab;
|
800
|
+
}
|
801
|
+
.lg-outer.lg-grabbing img.lg-object {
|
802
|
+
cursor: move;
|
803
|
+
cursor: -webkit-grabbing;
|
804
|
+
cursor: -moz-grabbing;
|
805
|
+
cursor: -o-grabbing;
|
806
|
+
cursor: -ms-grabbing;
|
807
|
+
cursor: grabbing;
|
808
|
+
}
|
809
|
+
.lg-outer .lg {
|
810
|
+
height: 100%;
|
811
|
+
width: 100%;
|
812
|
+
position: relative;
|
813
|
+
overflow: hidden;
|
814
|
+
margin-left: auto;
|
815
|
+
margin-right: auto;
|
816
|
+
max-width: 100%;
|
817
|
+
max-height: 100%;
|
818
|
+
}
|
819
|
+
.lg-outer .lg-inner {
|
820
|
+
width: 100%;
|
821
|
+
height: 100%;
|
822
|
+
position: absolute;
|
823
|
+
left: 0;
|
824
|
+
top: 0;
|
825
|
+
white-space: nowrap;
|
826
|
+
}
|
827
|
+
.lg-outer .lg-item {
|
828
|
+
background: image-url("lightgallery/loading.gif") no-repeat scroll center center transparent;
|
829
|
+
display: none !important;
|
830
|
+
}
|
831
|
+
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
|
832
|
+
display: inline-block !important;
|
833
|
+
}
|
834
|
+
.lg-outer.lg-css .lg-current {
|
835
|
+
display: inline-block !important;
|
836
|
+
}
|
837
|
+
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
|
838
|
+
display: inline-block;
|
839
|
+
text-align: center;
|
840
|
+
position: absolute;
|
841
|
+
width: 100%;
|
842
|
+
height: 100%;
|
843
|
+
}
|
844
|
+
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
|
845
|
+
content: "";
|
846
|
+
display: inline-block;
|
847
|
+
height: 50%;
|
848
|
+
width: 1px;
|
849
|
+
margin-right: -1px;
|
850
|
+
}
|
851
|
+
.lg-outer .lg-img-wrap {
|
852
|
+
position: absolute;
|
853
|
+
padding: 0 5px;
|
854
|
+
left: 0;
|
855
|
+
right: 0;
|
856
|
+
top: 0;
|
857
|
+
bottom: 0;
|
858
|
+
}
|
859
|
+
.lg-outer .lg-item.lg-complete {
|
860
|
+
background-image: none;
|
861
|
+
}
|
862
|
+
.lg-outer .lg-item.lg-current {
|
863
|
+
z-index: 1060;
|
864
|
+
}
|
865
|
+
.lg-outer .lg-image {
|
866
|
+
display: inline-block;
|
867
|
+
vertical-align: middle;
|
868
|
+
max-width: 100%;
|
869
|
+
max-height: 100%;
|
870
|
+
width: auto !important;
|
871
|
+
height: auto !important;
|
872
|
+
}
|
873
|
+
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
|
874
|
+
opacity: 0;
|
875
|
+
-webkit-transition: opacity 0.15s ease 0s;
|
876
|
+
-o-transition: opacity 0.15s ease 0s;
|
877
|
+
transition: opacity 0.15s ease 0s;
|
878
|
+
}
|
879
|
+
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
|
880
|
+
opacity: 1;
|
881
|
+
}
|
882
|
+
.lg-outer .lg-empty-html {
|
883
|
+
display: none;
|
884
|
+
}
|
885
|
+
.lg-outer.lg-hide-download #lg-download {
|
886
|
+
display: none;
|
887
|
+
}
|
888
|
+
|
889
|
+
.lg-backdrop {
|
890
|
+
position: fixed;
|
891
|
+
top: 0;
|
892
|
+
left: 0;
|
893
|
+
right: 0;
|
894
|
+
bottom: 0;
|
895
|
+
z-index: 1040;
|
896
|
+
background-color: #000;
|
897
|
+
opacity: 0;
|
898
|
+
-webkit-transition: opacity 0.15s ease 0s;
|
899
|
+
-o-transition: opacity 0.15s ease 0s;
|
900
|
+
transition: opacity 0.15s ease 0s;
|
901
|
+
}
|
902
|
+
.lg-backdrop.in {
|
903
|
+
opacity: 1;
|
904
|
+
}
|
905
|
+
|
906
|
+
.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
|
907
|
+
-webkit-transition: none 0s ease 0s !important;
|
908
|
+
-moz-transition: none 0s ease 0s !important;
|
909
|
+
-o-transition: none 0s ease 0s !important;
|
910
|
+
transition: none 0s ease 0s !important;
|
911
|
+
}
|
912
|
+
.lg-css3.lg-use-css3 .lg-item {
|
913
|
+
-webkit-backface-visibility: hidden;
|
914
|
+
-moz-backface-visibility: hidden;
|
915
|
+
backface-visibility: hidden;
|
916
|
+
}
|
917
|
+
.lg-css3.lg-use-left .lg-item {
|
918
|
+
-webkit-backface-visibility: hidden;
|
919
|
+
-moz-backface-visibility: hidden;
|
920
|
+
backface-visibility: hidden;
|
921
|
+
}
|
922
|
+
.lg-css3.lg-fade .lg-item {
|
923
|
+
opacity: 0;
|
924
|
+
}
|
925
|
+
.lg-css3.lg-fade .lg-item.lg-current {
|
926
|
+
opacity: 1;
|
927
|
+
}
|
928
|
+
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
|
929
|
+
-webkit-transition: opacity 0.1s ease 0s;
|
930
|
+
-moz-transition: opacity 0.1s ease 0s;
|
931
|
+
-o-transition: opacity 0.1s ease 0s;
|
932
|
+
transition: opacity 0.1s ease 0s;
|
933
|
+
}
|
934
|
+
.lg-css3.lg-slide.lg-use-css3 .lg-item {
|
935
|
+
opacity: 0;
|
936
|
+
}
|
937
|
+
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
|
938
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
939
|
+
transform: translate3d(-100%, 0, 0);
|
940
|
+
}
|
941
|
+
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
|
942
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
943
|
+
transform: translate3d(100%, 0, 0);
|
944
|
+
}
|
945
|
+
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
|
946
|
+
-webkit-transform: translate3d(0, 0, 0);
|
947
|
+
transform: translate3d(0, 0, 0);
|
948
|
+
opacity: 1;
|
949
|
+
}
|
950
|
+
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
|
951
|
+
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
952
|
+
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
953
|
+
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
954
|
+
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
955
|
+
}
|
956
|
+
.lg-css3.lg-slide.lg-use-left .lg-item {
|
957
|
+
opacity: 0;
|
958
|
+
position: absolute;
|
959
|
+
left: 0;
|
960
|
+
}
|
961
|
+
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
|
962
|
+
left: -100%;
|
963
|
+
}
|
964
|
+
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
|
965
|
+
left: 100%;
|
966
|
+
}
|
967
|
+
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
|
968
|
+
left: 0;
|
969
|
+
opacity: 1;
|
970
|
+
}
|
971
|
+
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
|
972
|
+
-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
973
|
+
-moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
974
|
+
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
975
|
+
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
976
|
+
}
|
977
|
+
|
978
|
+
/*# sourceMappingURL=lightgallery.css.map */
|