assets-rails 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/README.md +13 -9
- data/assets-rails.gemspec +2 -0
- data/lib/assets-rails/engine.rb +3 -1
- data/lib/assets-rails/version.rb +1 -1
- data/vendor/assets/fonts/lightgallery/Slide-icons.dev.svg +33 -0
- data/vendor/assets/fonts/lightgallery/Slide-icons.eot +0 -0
- data/vendor/assets/fonts/lightgallery/Slide-icons.svg +33 -0
- data/vendor/assets/fonts/lightgallery/Slide-icons.ttf +0 -0
- data/vendor/assets/fonts/lightgallery/Slide-icons.woff +0 -0
- data/vendor/assets/fonts/photoswipe/v4.0.0/default-skin/default-skin.svg +38 -0
- data/vendor/assets/fonts/photoswipe/v4.0.2/default-skin/default-skin.svg +1 -0
- data/vendor/assets/images/jquery.share/social-icons-sprite.png +0 -0
- data/vendor/assets/images/jquery.share/social-icons.png +0 -0
- data/vendor/assets/images/lightgallery/loading.gif +0 -0
- data/vendor/assets/images/photoswipe/v4.0.0/default-skin/default-skin.png +0 -0
- data/vendor/assets/images/photoswipe/v4.0.0/default-skin/preloader.gif +0 -0
- data/vendor/assets/images/photoswipe/v4.0.2/default-skin/default-skin.png +0 -0
- data/vendor/assets/images/photoswipe/v4.0.2/default-skin/preloader.gif +0 -0
- data/vendor/assets/javascripts/imagesloaded/v3.1.8.js +1 -1
- data/vendor/assets/javascripts/imagesloaded/v3.1.8/imagesloaded.js +561 -3
- data/vendor/assets/javascripts/jquery.cookie/v1.4.1.js +2 -0
- data/vendor/assets/javascripts/jquery.cookie/v1.4.1/jquery.cookie.js +117 -0
- data/vendor/assets/javascripts/jquery.share.js +1 -0
- data/vendor/assets/javascripts/jquery.share/jquery.share.js +137 -0
- data/vendor/assets/javascripts/jquery.zoom/v1.7.13.js +1 -0
- data/vendor/assets/javascripts/jquery.zoom/v1.7.13/jquery.zoom.js +233 -0
- data/vendor/assets/javascripts/lightgallery/v1.1.4.js +1 -0
- data/vendor/assets/javascripts/lightgallery/v1.1.4/lightgallery.min.js +11 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.0.js +2 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.0/photoswipe-ui-default.js +824 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.0/photoswipe.js +3647 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.2.js +2 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.2/photoswipe-ui-default.js +792 -0
- data/vendor/assets/javascripts/photoswipe/v4.0.2/photoswipe.js +3589 -0
- data/vendor/assets/stylesheets/font-awesome/v4.2.0/_variables.scss +1 -1
- data/vendor/assets/stylesheets/jquery.collageplus/v0.3.3/transitions.css +202 -0
- data/vendor/assets/stylesheets/jquery.share.css +3 -0
- data/vendor/assets/stylesheets/jquery.share/jquery.share.scss +215 -0
- data/vendor/assets/stylesheets/lightgallery/v1.1.4/lightgallery.scss +629 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.0.css +3 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.0/default-skin.scss +418 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.0/photoswipe.css +125 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.2.css +3 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.2/default-skin.scss +390 -0
- data/vendor/assets/stylesheets/photoswipe/v4.0.2/photoswipe.css +148 -0
- metadata +43 -5
@@ -1,7 +1,7 @@
|
|
1
1
|
// Variables
|
2
2
|
// --------------------------
|
3
3
|
|
4
|
-
$fa-font-path: "
|
4
|
+
$fa-font-path: "../v4.2.0" !default;
|
5
5
|
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts" !default; // for referencing Bootstrap CDN font files directly
|
6
6
|
$fa-css-prefix: fa !default;
|
7
7
|
$fa-version: "4.2.0" !default;
|
@@ -0,0 +1,202 @@
|
|
1
|
+
/*
|
2
|
+
|
3
|
+
A library of transitions for revealing the loaded images
|
4
|
+
(Heavily) Inspired by http://tympanus.net/codrops/2013/07/02/loading-effects-for-grid-items-with-css-animations/
|
5
|
+
|
6
|
+
*/
|
7
|
+
|
8
|
+
.effect-parent {
|
9
|
+
-webkit-perspective: 1300px;
|
10
|
+
-moz-perspective: 1300px;
|
11
|
+
perspective: 1300px;
|
12
|
+
}
|
13
|
+
|
14
|
+
|
15
|
+
/* EFFECT 1 */
|
16
|
+
.effect-1 {
|
17
|
+
-webkit-transform-style: preserve-3d;
|
18
|
+
-moz-transform-style: preserve-3d;
|
19
|
+
transform-style: preserve-3d;
|
20
|
+
-webkit-transform-origin: 50% 50% -300px;
|
21
|
+
-moz-transform-origin: 50% 50% -300px;
|
22
|
+
transform-origin: 50% 50% -300px;
|
23
|
+
-webkit-transform: rotateX(-180deg);
|
24
|
+
-moz-transform: rotateX(-180deg);
|
25
|
+
transform: rotateX(-180deg);
|
26
|
+
-webkit-animation: fly ease-in-out forwards;
|
27
|
+
-moz-animation: fly ease-in-out forwards;
|
28
|
+
animation: fly ease-in-out forwards;
|
29
|
+
}
|
30
|
+
@-webkit-keyframes fly {
|
31
|
+
100% { -webkit-transform: rotateX(0deg); opacity: 1; -webkit-transform-origin:50% 50% 0; }
|
32
|
+
}
|
33
|
+
|
34
|
+
@-moz-keyframes fly {
|
35
|
+
100% { -moz-transform: rotateX(0deg); opacity: 1; -moz-transform-origin:50% 50% 0; }
|
36
|
+
}
|
37
|
+
|
38
|
+
@keyframes fly {
|
39
|
+
100% { transform: rotateX(0deg); opacity: 1; transform-origin:50% 50% 0; }
|
40
|
+
}
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
/* EFFECT 2 */
|
45
|
+
.effect-2 {
|
46
|
+
-webkit-transform: translateY(200px);
|
47
|
+
-moz-transform: translateY(200px);
|
48
|
+
transform: translateY(200px);
|
49
|
+
-webkit-animation: moveUp ease forwards;
|
50
|
+
-moz-animation: moveUp ease forwards;
|
51
|
+
animation: moveUp ease forwards;
|
52
|
+
}
|
53
|
+
|
54
|
+
@-webkit-keyframes moveUp {
|
55
|
+
to { -webkit-transform: translateY(0); opacity: 1; }
|
56
|
+
}
|
57
|
+
|
58
|
+
@-moz-keyframes moveUp {
|
59
|
+
to { -moz-transform: translateY(0); opacity: 1; }
|
60
|
+
}
|
61
|
+
|
62
|
+
@keyframes moveUp {
|
63
|
+
to { transform: translateY(0); opacity: 1; }
|
64
|
+
}
|
65
|
+
|
66
|
+
|
67
|
+
/* EFFECT 3 */
|
68
|
+
.effect-3 {
|
69
|
+
-webkit-transform-style: preserve-3d;
|
70
|
+
-moz-transform-style: preserve-3d;
|
71
|
+
transform-style: preserve-3d;
|
72
|
+
-webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
|
73
|
+
-moz-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
|
74
|
+
transform: translateZ(400px) translateY(300px) rotateX(-90deg);
|
75
|
+
-webkit-animation: fallPerspective ease-in-out forwards;
|
76
|
+
-moz-animation: fallPerspective ease-in-out forwards;
|
77
|
+
animation: fallPerspective ease-in-out forwards;
|
78
|
+
}
|
79
|
+
|
80
|
+
@-webkit-keyframes fallPerspective {
|
81
|
+
100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
|
82
|
+
}
|
83
|
+
|
84
|
+
@-moz-keyframes fallPerspective {
|
85
|
+
100% { -moz-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
|
86
|
+
}
|
87
|
+
|
88
|
+
@keyframes fallPerspective {
|
89
|
+
100% { transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
|
90
|
+
}
|
91
|
+
|
92
|
+
|
93
|
+
/* EFFECT 4 */
|
94
|
+
.effect-4 {
|
95
|
+
-webkit-transform-style: preserve-3d;
|
96
|
+
-moz-transform-style: preserve-3d;
|
97
|
+
transform-style: preserve-3d;
|
98
|
+
-webkit-transform-origin: 0% 0%;
|
99
|
+
-moz-transform-origin: 0% 0%;
|
100
|
+
transform-origin: 0% 0%;
|
101
|
+
-webkit-transform: rotateX(-80deg);
|
102
|
+
-moz-transform: rotateX(-80deg);
|
103
|
+
transform: rotateX(-80deg);
|
104
|
+
-webkit-animation: flip ease-in-out forwards;
|
105
|
+
-moz-animation: flip ease-in-out forwards;
|
106
|
+
animation: flip ease-in-out forwards;
|
107
|
+
}
|
108
|
+
|
109
|
+
@-webkit-keyframes flip {
|
110
|
+
100% { -webkit-transform: rotateX(0deg); opacity: 1; }
|
111
|
+
}
|
112
|
+
|
113
|
+
@-moz-keyframes flip {
|
114
|
+
100% { -moz-transform: rotateX(0deg); opacity: 1; }
|
115
|
+
}
|
116
|
+
|
117
|
+
@keyframes flip {
|
118
|
+
100% { transform: rotateX(0deg); opacity: 1; }
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
/* EFFECT 5 */
|
123
|
+
.effect-5 {
|
124
|
+
-webkit-transform-style: preserve-3d;
|
125
|
+
-moz-transform-style: preserve-3d;
|
126
|
+
transform-style: preserve-3d;
|
127
|
+
-webkit-transform: rotateY(-180deg);
|
128
|
+
-moz-transform: rotateY(-180deg);
|
129
|
+
transform: rotateY(-180deg);
|
130
|
+
-webkit-animation: moveUp ease-in-out forwards;
|
131
|
+
-moz-animation: moveUp ease-in-out forwards;
|
132
|
+
animation: moveUp ease-in-out forwards;
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
/* EFFECT 6 */
|
137
|
+
.effect-6 {
|
138
|
+
|
139
|
+
-webkit-transform: scale(0.638) translate(-179px);
|
140
|
+
-moz-transform: scale(0.638) translate(-179px);
|
141
|
+
transform: scale(0.638) translate(-179px);
|
142
|
+
|
143
|
+
-webkit-animation: moveUp ease-in-out forwards;
|
144
|
+
-moz-animation: moveUp ease-in-out forwards;
|
145
|
+
animation: moveUp ease-in-out forwards;
|
146
|
+
}
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
/* Universal durations */
|
153
|
+
.effect-duration-1{
|
154
|
+
-webkit-animation-duration: .4s;
|
155
|
+
-moz-animation-duration: .4s;
|
156
|
+
animation-duration: .4s;
|
157
|
+
}
|
158
|
+
.effect-duration-2{
|
159
|
+
-webkit-animation-duration: .5s;
|
160
|
+
-moz-animation-duration: .5s;
|
161
|
+
animation-duration: .5s;
|
162
|
+
}
|
163
|
+
.effect-duration-3{
|
164
|
+
-webkit-animation-duration: .6s;
|
165
|
+
-moz-animation-duration: .6s;
|
166
|
+
animation-duration: .6s;
|
167
|
+
}
|
168
|
+
.effect-duration-4{
|
169
|
+
-webkit-animation-duration: .7s;
|
170
|
+
-moz-animation-duration: .7s;
|
171
|
+
animation-duration: .7s;
|
172
|
+
}
|
173
|
+
.effect-duration-5{
|
174
|
+
-webkit-animation-duration: .8s;
|
175
|
+
-moz-animation-duration: .8s;
|
176
|
+
animation-duration: .8s;
|
177
|
+
}
|
178
|
+
.effect-duration-6{
|
179
|
+
-webkit-animation-duration: .9s;
|
180
|
+
-moz-animation-duration: .9s;
|
181
|
+
animation-duration: .9s;
|
182
|
+
}
|
183
|
+
.effect-duration-7{
|
184
|
+
-webkit-animation-duration: .95s;
|
185
|
+
-moz-animation-duration: .95s;
|
186
|
+
animation-duration: .95s;
|
187
|
+
}
|
188
|
+
.effect-duration-8{
|
189
|
+
-webkit-animation-duration: 1s;
|
190
|
+
-moz-animation-duration: 1s;
|
191
|
+
animation-duration: 1s;
|
192
|
+
}
|
193
|
+
.effect-duration-9{
|
194
|
+
-webkit-animation-duration: 1.05s;
|
195
|
+
-moz-animation-duration: 1.05s;
|
196
|
+
animation-duration: 1.05s;
|
197
|
+
}
|
198
|
+
.effect-duration-10{
|
199
|
+
-webkit-animation-duration: 1.1s;
|
200
|
+
-moz-animation-duration: 1.1s;
|
201
|
+
animation-duration: 1.1s;
|
202
|
+
}
|
@@ -0,0 +1,215 @@
|
|
1
|
+
.share {
|
2
|
+
|
3
|
+
}
|
4
|
+
|
5
|
+
.share-affix {
|
6
|
+
position: fixed;
|
7
|
+
top:50px;
|
8
|
+
left:0px;
|
9
|
+
}
|
10
|
+
|
11
|
+
.share-icon {
|
12
|
+
background-repeat: no-repeat;
|
13
|
+
background-image:image-url('jquery.share/social-icons.png');
|
14
|
+
height:40px;
|
15
|
+
width:40px;
|
16
|
+
display: inline-block;
|
17
|
+
text-indent: -99999px;
|
18
|
+
margin:2px;
|
19
|
+
opacity: .9;
|
20
|
+
filter:Alpha(Opacity=90);
|
21
|
+
}
|
22
|
+
|
23
|
+
.share-icon:hover {
|
24
|
+
opacity: 1;
|
25
|
+
filter:Alpha(Opacity=100);
|
26
|
+
}
|
27
|
+
|
28
|
+
.share-icon-digg {
|
29
|
+
background-position: -526px 0;
|
30
|
+
}
|
31
|
+
.share-icon-email {
|
32
|
+
background-position: -614px 0;
|
33
|
+
}
|
34
|
+
.share-icon-flickr {
|
35
|
+
background-position: -261px 0;
|
36
|
+
}
|
37
|
+
.share-icon-foursquare {
|
38
|
+
background-position: 0 0;
|
39
|
+
}
|
40
|
+
.share-icon-rss {
|
41
|
+
background-position: -305px 0;
|
42
|
+
}
|
43
|
+
.share-icon-facebook {
|
44
|
+
background-position: -131px 0;
|
45
|
+
}
|
46
|
+
.share-icon-twitter {
|
47
|
+
background-position: -174px 0;
|
48
|
+
}
|
49
|
+
.share-icon-tumblr {
|
50
|
+
background-position: -87px 0;
|
51
|
+
}
|
52
|
+
.share-icon-linkedin {
|
53
|
+
background-position: -438px 0;
|
54
|
+
}
|
55
|
+
.share-icon-vimeo {
|
56
|
+
background-position: -393px 0;
|
57
|
+
}
|
58
|
+
.share-icon-instagram {
|
59
|
+
background-position: -44px 0;
|
60
|
+
}
|
61
|
+
.share-icon-pinterest {
|
62
|
+
background-position: -349px 0;
|
63
|
+
}
|
64
|
+
.share-icon-googleplus {
|
65
|
+
background-position: -218px 0;
|
66
|
+
}
|
67
|
+
.share-icon-in1 {
|
68
|
+
background-position: -482px 0;
|
69
|
+
}
|
70
|
+
.share-icon-stumbleupon {
|
71
|
+
background-position: -570px 0;
|
72
|
+
}
|
73
|
+
|
74
|
+
/**a.behance, a.delicious, a.deviantart, a.digg, a.dribbble, a.facebook, a.flickr, a.forrst, a.foursquare, a.googleplus, a.in1, a.instagram, a.lastfm, a.linkedin, a.pinterest, a.rss, a.skype, a.tumblr, a.twitter, a.vimeo, a.youtube {*/
|
75
|
+
.share-square {
|
76
|
+
-moz-transition: all 0.2s linear 0s;
|
77
|
+
background: image-url("jquery.share/social-icons.png") no-repeat scroll left top transparent;
|
78
|
+
display: inline-block;
|
79
|
+
height: 32px;
|
80
|
+
line-height: 0;
|
81
|
+
margin: 2px;
|
82
|
+
width: 32px;
|
83
|
+
}
|
84
|
+
.share-square-behance {
|
85
|
+
background-position: -544px -44px;
|
86
|
+
}
|
87
|
+
.share-square-behance:hover {
|
88
|
+
background-position: -544px -77px;
|
89
|
+
}
|
90
|
+
.share-square-delicious {
|
91
|
+
background-position: -512px -44px;
|
92
|
+
}
|
93
|
+
.share-square-delicious:hover {
|
94
|
+
background-position: -512px -77px;
|
95
|
+
}
|
96
|
+
.share-square-deviantart {
|
97
|
+
background-position: -480px -44px;
|
98
|
+
}
|
99
|
+
.share-square-deviantart:hover {
|
100
|
+
background-position: -480px -77px;
|
101
|
+
}
|
102
|
+
.share-square-digg {
|
103
|
+
background-position: -448px -44px;
|
104
|
+
}
|
105
|
+
.share-square-digg:hover {
|
106
|
+
background-position: -448px -77px;
|
107
|
+
}
|
108
|
+
.share-square-dribbble {
|
109
|
+
background-position: -416px -44px;
|
110
|
+
}
|
111
|
+
.share-square-dribbble:hover {
|
112
|
+
background-position: -416px -77px;
|
113
|
+
}
|
114
|
+
.share-square-email {
|
115
|
+
background-position: -674px -44px;
|
116
|
+
}
|
117
|
+
.share-square-email:hover {
|
118
|
+
background-position: -674px -77px;
|
119
|
+
}
|
120
|
+
.share-square-facebook {
|
121
|
+
background-position: -384px -44px;
|
122
|
+
}
|
123
|
+
.share-square-facebook:hover {
|
124
|
+
background-position: -384px -77px;
|
125
|
+
}
|
126
|
+
.share-square-flickr {
|
127
|
+
background-position: -352px -44px;
|
128
|
+
}
|
129
|
+
.share-square-flickr:hover {
|
130
|
+
background-position: -352px -77px;
|
131
|
+
}
|
132
|
+
.share-square-forrst {
|
133
|
+
background-position: -320px -44px;
|
134
|
+
}
|
135
|
+
.share-square-forrst:hover {
|
136
|
+
background-position: -320px -77px;
|
137
|
+
}
|
138
|
+
.share-square-googleplus {
|
139
|
+
background-position: -288px -44px;
|
140
|
+
}
|
141
|
+
.share-square-googleplus:hover {
|
142
|
+
background-position: -288px -77px;
|
143
|
+
}
|
144
|
+
.share-square-in1 {
|
145
|
+
background-position: -576px -44px;
|
146
|
+
}
|
147
|
+
.share-square-in1:hover {
|
148
|
+
background-position: -576px -77px;
|
149
|
+
}
|
150
|
+
.share-square-instagram {
|
151
|
+
background-position: -608px -44px;
|
152
|
+
}
|
153
|
+
.share-square-instagram:hover {
|
154
|
+
background-position: -608px -77px;
|
155
|
+
}
|
156
|
+
.share-square-lastfm {
|
157
|
+
background-position: -256px -44px;
|
158
|
+
}
|
159
|
+
.share-square-lastfm:hover {
|
160
|
+
background-position: -256px -77px;
|
161
|
+
}
|
162
|
+
.share-square-linkedin {
|
163
|
+
background-position: -224px -44px;
|
164
|
+
}
|
165
|
+
.share-square-linkedin:hover {
|
166
|
+
background-position: -224px -77px;
|
167
|
+
}
|
168
|
+
.share-square-pinterest {
|
169
|
+
background-position: -192px -44px;
|
170
|
+
}
|
171
|
+
.share-square-pinterest:hover {
|
172
|
+
background-position: -192px -77px;
|
173
|
+
}
|
174
|
+
.share-square-rss {
|
175
|
+
background-position: -160px -44px;
|
176
|
+
}
|
177
|
+
.share-square-rss:hover {
|
178
|
+
background-position: -160px -77px;
|
179
|
+
}
|
180
|
+
.share-square-skype {
|
181
|
+
background-position: -128px -44px;
|
182
|
+
}
|
183
|
+
.share-square-skype:hover {
|
184
|
+
background-position: -128px -77px;
|
185
|
+
}
|
186
|
+
.share-square-stumbleupon {
|
187
|
+
background-position: -640px -44px;
|
188
|
+
}
|
189
|
+
.share-square-stumbleupon:hover {
|
190
|
+
background-position: -640px -77px;
|
191
|
+
}
|
192
|
+
.share-square-tumblr {
|
193
|
+
background-position: -96px -44px;
|
194
|
+
}
|
195
|
+
.share-square-tumblr:hover {
|
196
|
+
background-position: -96px -77px;
|
197
|
+
}
|
198
|
+
.share-square-twitter {
|
199
|
+
background-position: -64px -44px;
|
200
|
+
}
|
201
|
+
.share-square-twitter:hover {
|
202
|
+
background-position: -64px -77px;
|
203
|
+
}
|
204
|
+
.share-square-vimeo {
|
205
|
+
background-position: -32px -44px;
|
206
|
+
}
|
207
|
+
.share-square-vimeo:hover {
|
208
|
+
background-position: -32px -77px;
|
209
|
+
}
|
210
|
+
.share-square-youtube {
|
211
|
+
background-position: 0 -44px;
|
212
|
+
}
|
213
|
+
.share-square-youtube:hover {
|
214
|
+
background-position: 0 -77px;
|
215
|
+
}
|
@@ -0,0 +1,629 @@
|
|
1
|
+
/*clearfix*/
|
2
|
+
.group {
|
3
|
+
*zoom: 1;
|
4
|
+
}
|
5
|
+
.group:before, .group:after {
|
6
|
+
display: table;
|
7
|
+
content: "";
|
8
|
+
line-height: 0;
|
9
|
+
}
|
10
|
+
.group:after {
|
11
|
+
clear: both;
|
12
|
+
}
|
13
|
+
/*/clearfix*/
|
14
|
+
|
15
|
+
|
16
|
+
/** /font-icons if you are not using font icons you can just remove this part/**/
|
17
|
+
@font-face {
|
18
|
+
font-family: 'Slide-icons';
|
19
|
+
src: url('../fonts/Slide-icons.eot');
|
20
|
+
}
|
21
|
+
@font-face {
|
22
|
+
font-family: 'Slide-icons';
|
23
|
+
src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAWcAAsAAAAACSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAm4AAAQxqzjSYEZGVE0AAAN4AAAAGgAAABxmWaSOR0RFRgAAA5QAAAAdAAAAIAAzAARPUy8yAAADtAAAAEsAAABgL/bcQGNtYXAAAAQAAAAAPQAAAVLgL/LNaGVhZAAABEAAAAAuAAAANv3vdhloaGVhAAAEcAAAAB4AAAAkBBD/5GhtdHgAAASQAAAAEgAAABIFOwBxbWF4cAAABKQAAAAGAAAABgAGUABuYW1lAAAErAAAAOEAAAGw7pftcnBvc3QAAAWQAAAADAAAACAAAwAAeJx9VE1oE1EQnpfsJutmSWNMQoUoWxB/qmIKnkKJWKvXQlOwhx5E7SEo9WCEHNKAJqVbn8RLzvEgKEUPCgoiIi3YHkWw2mO9CBb8O1SzurXjvLfrJiqEhXkzwzffm/nee8tAUYAxZuQvFs5PHi6cuzR1GVgAGORsM2D3Be1ehRtBbii7ddiZjyPnvmOE+QW7YRfVNNzpSQPE0vBwexqMtNIbh7Dg0KAHUrAL9sARyF6ZKpzKZDK0nMwMHHeXIXc54S7DHU109gPAZpnF5th1xiEkiANgsFpgNDATPB3ldlHZbNiNcBTZ/JNRZBPFZ0nE6mw/GT6MUC6tiPCgihA6Vkb8sXCNI35bGxRuTcYa4vqZIWlUP1sVoCx3Yyqd1gTNIUH4RhJ6rILAxw9yN/bwghVSt56rLoCyFY6gmy8kwENJwjYrlItPVauOuDWyhqDEzlKFIuvIIrAHfTJbr2uSWpgFOVvFHVDQc5dftK751P3CeyuNp8Uf/DL3tal5rFKLuiX2MxGdL00azJHKOWLcrZF3MmtZWhThNRWwx62XSYTF/d8Rc6sR2iFyNYS4MWNSzaeJA+RWfkqjCYBO5tV71bIkjTssUVe5bykrhrXqWqnZ1m9a6rfk61emfu+Px8iIA8zf/SrDNr4s8csd+Gbzn+mXOtWK3rPHkqbeGkuZuvNIGudo9wRdvDkald0Yj9HFy89vtvsgjw7/Pxm9Kf+SEfGj86HU/frlVn6RwgP7CLVRTZDCFZt6j99edcWGSPmz5h4BLO5d73bIzVL7OdTkc8j6O5MIdiPBkzcNnZ7zDvF/2OYkWvSFI78BSE0QpgAAeJxjYGBgZACCk535hiD6XIbUOhgNAD+3BfAAAHicY2BkYGDgA2IJBhBgYmAEQlYgZgHzGAAEgQA4AAAAeJxjYGZiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbAyM8CBAILJEJDmmsLg8EDqAwPjg/8PGPQYHzAoNDAwMMIVKAAhIwATaAw5AHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwgiQeyHxj+/wezpCAs+RcCjFBdYMDIxoDMHZEAAP1aCcoAAAB4nGNgZGBgAGLNvbqy8fw2Xxm4mRhA4FyG1DoE/f8BEwPjAyCXgwEsDQAB0gmnAAB4nGNgZGBgfPD/AYMeEwMDwz8GIAkUQQHMAG3nA/YAAAIAAAAAAAAAAgAAUQClACAAlgAAAABQAAAGAAB4nI2PMW7CQBBFn8FGIkQpo5RbIFHZsjciEhyAMg0SFwALrYS8kuEMOQLH4BgcgGPkAKnz7UxBkYKVVvPmz5/ZWeCZMwndSZjwZjwgozQeMuPLOJXnapyJv41HTJIXOZN0LOW17+p4wBNT4yGffBin8lyMM/HNeCT+Yc2BwI6aXHFLpOEI60PY1XnYxkbJnW7Kqs9PfWzZq9vhKfQPx1L3/6l/Nc9c6kLXy1/xrnGxOa1iu6+dL0q3dHevK/PzfJH7spLxkW03qrZSQ191eqHbi03dHkNsXFWUD835BcvqQqwAAAB4nGNgZsALAAB9AAQ=) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype');
|
24
|
+
font-weight: normal;
|
25
|
+
font-style: normal;
|
26
|
+
}
|
27
|
+
[data-icon]:before {
|
28
|
+
font-family: 'Slide-icons';
|
29
|
+
content: attr(data-icon);
|
30
|
+
speak: none;
|
31
|
+
font-weight: normal;
|
32
|
+
font-variant: normal;
|
33
|
+
text-transform: none;
|
34
|
+
line-height: 1;
|
35
|
+
-webkit-font-smoothing: antialiased;
|
36
|
+
-moz-osx-font-smoothing: grayscale;
|
37
|
+
}
|
38
|
+
/** / End of font-icons /**/
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
.lightGallery {
|
44
|
+
overflow: hidden!important;
|
45
|
+
}
|
46
|
+
#lightGallery-Gallery img {
|
47
|
+
border: none!important;
|
48
|
+
}
|
49
|
+
#lightGallery-outer {
|
50
|
+
width: 100%;
|
51
|
+
height: 100%;
|
52
|
+
position: fixed;
|
53
|
+
top: 0;
|
54
|
+
left: 0;
|
55
|
+
z-index: 99999!important;
|
56
|
+
overflow: hidden;
|
57
|
+
-webkit-user-select: none;
|
58
|
+
-moz-user-select: none;
|
59
|
+
user-select: none;
|
60
|
+
opacity: 1;
|
61
|
+
-webkit-transition: opacity 0.35s ease;
|
62
|
+
-moz-transition: opacity 0.35s ease;
|
63
|
+
-o-transition: opacity 0.35s ease;
|
64
|
+
-ms-transition: opacity 0.35s ease;
|
65
|
+
transition: opacity 0.35s ease;
|
66
|
+
background: #0d0d0d;
|
67
|
+
}
|
68
|
+
#lightGallery-outer .lightGallery-slide{
|
69
|
+
position: relative;
|
70
|
+
}
|
71
|
+
/*lightGallery starting effects*/
|
72
|
+
#lightGallery-Gallery.opacity {
|
73
|
+
opacity: 1;
|
74
|
+
transition: opacity 1s ease 0s;
|
75
|
+
-moz-transition: opacity 1s ease 0s;
|
76
|
+
-webkit-transition: opacity 1s ease 0s;
|
77
|
+
-o-transition: opacity 1s ease 0s;
|
78
|
+
-ms-transition: opacity 1s ease 0s;
|
79
|
+
}
|
80
|
+
#lightGallery-Gallery.opacity .thumb_cont {
|
81
|
+
opacity: 1;
|
82
|
+
}
|
83
|
+
#lightGallery-Gallery.fadeM {
|
84
|
+
opacity: 0;
|
85
|
+
transition: opacity 0.5s ease 0s;
|
86
|
+
-moz-transition: opacity 0.5s ease 0s;
|
87
|
+
-webkit-transition: opacity 0.5s ease 0s;
|
88
|
+
-o-transition: opacity 0.5s ease 0s;
|
89
|
+
-ms-transition: opacity 0.5s ease 0s;
|
90
|
+
}
|
91
|
+
/*lightGallery starting effects*/
|
92
|
+
|
93
|
+
|
94
|
+
/*lightGallery core*/
|
95
|
+
#lightGallery-Gallery {
|
96
|
+
height: 100%;
|
97
|
+
opacity: 0;
|
98
|
+
width: 100%;
|
99
|
+
position: relative;
|
100
|
+
transition: opacity 1s ease 0s;
|
101
|
+
-moz-transition: opacity 1s ease 0s;
|
102
|
+
-webkit-transition: opacity 1s ease 0s;
|
103
|
+
-o-transition: opacity 1s ease 0s;
|
104
|
+
-ms-transition: opacity 1s ease 0s;
|
105
|
+
}
|
106
|
+
/**/
|
107
|
+
#lightGallery-slider {
|
108
|
+
height: 100%;
|
109
|
+
left: 0;
|
110
|
+
top: 0;
|
111
|
+
width: 100%;
|
112
|
+
position: absolute;
|
113
|
+
white-space: nowrap;
|
114
|
+
}
|
115
|
+
/**/
|
116
|
+
#lightGallery-slider .lightGallery-slide {
|
117
|
+
background: url("loading.gif") no-repeat scroll center center transparent;
|
118
|
+
display: inline-block;
|
119
|
+
height: 100%;
|
120
|
+
text-align: center;
|
121
|
+
width: 100%;
|
122
|
+
}
|
123
|
+
#lightGallery-slider .lightGallery-slide.complete {
|
124
|
+
background-image: none;
|
125
|
+
}
|
126
|
+
#lightGallery-Gallery.showAfterLoad .lightGallery-slide > * {
|
127
|
+
opacity: 0;
|
128
|
+
}
|
129
|
+
#lightGallery-Gallery.showAfterLoad .lightGallery-slide.complete > * {
|
130
|
+
opacity: 1;
|
131
|
+
}
|
132
|
+
#lightGallery-slider.slide .lightGallery-slide, #lightGallery-slider.useLeft .lightGallery-slide {
|
133
|
+
position: absolute;
|
134
|
+
opacity: 0.4;
|
135
|
+
}
|
136
|
+
#lightGallery-slider.fadeM .lightGallery-slide {
|
137
|
+
position: absolute;
|
138
|
+
left: 0;
|
139
|
+
opacity: 0;
|
140
|
+
}
|
141
|
+
#lightGallery-slider.animate .lightGallery-slide {
|
142
|
+
position: absolute;
|
143
|
+
left: 0;
|
144
|
+
}
|
145
|
+
#lightGallery-slider.fadeM .current {
|
146
|
+
opacity: 1;
|
147
|
+
z-index: 9;
|
148
|
+
}
|
149
|
+
#lightGallery-slider .lightGallery-slide:before {
|
150
|
+
content: "";
|
151
|
+
display: inline-block;
|
152
|
+
height: 50%;
|
153
|
+
width: 1px;
|
154
|
+
margin-right: -1px;
|
155
|
+
}
|
156
|
+
#lightGallery-Gallery.opacity .lightGallery-slide .object{
|
157
|
+
transform: scale3d(1, 1, 1);
|
158
|
+
-moz-transform: scale3d(1, 1, 1);
|
159
|
+
-ms-transform: scale3d(1, 1, 1);
|
160
|
+
-webkit-transform: scale3d(1, 1, 1);
|
161
|
+
-o-transform: scale3d(1, 1, 1);
|
162
|
+
}
|
163
|
+
.lightGallery-slide .object{
|
164
|
+
transform: scale3d(0.5, 0.5, 0.5);
|
165
|
+
-moz-transform: scale3d(0.5, 0.5, 0.5);
|
166
|
+
-ms-transform: scale3d(0.5, 0.5, 0.5);
|
167
|
+
-webkit-transform: scale3d(0.5, 0.5, 0.5);
|
168
|
+
-o-transform: scale3d(0.5, 0.5, 0.5);
|
169
|
+
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
|
170
|
+
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
|
171
|
+
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
|
172
|
+
-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
|
173
|
+
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
|
174
|
+
}
|
175
|
+
#lightGallery-Gallery.fadeM .lightGallery-slide .object{
|
176
|
+
transform: scale3d(0.5, 0.5, 0.5);
|
177
|
+
-moz-transform: scale3d(0.5, 0.5, 0.5);
|
178
|
+
-ms-transform: scale3d(0.5, 0.5, 0.5);
|
179
|
+
-webkit-transform: scale3d(0.5, 0.5, 0.5);
|
180
|
+
-o-transform: scale3d(0.5, 0.5, 0.5);
|
181
|
+
}
|
182
|
+
#lightGallery-slider.fadeM.on .current {
|
183
|
+
opacity: 1;
|
184
|
+
transition: opacity 0.5s ease 0s;
|
185
|
+
-moz-transition: opacity 0.5s ease 0s;
|
186
|
+
-webkit-transition: opacity 0.5s ease 0s;
|
187
|
+
-o-transition: opacity 0.5s ease 0s;
|
188
|
+
-ms-transition: opacity 0.5s ease 0s;
|
189
|
+
}
|
190
|
+
#lightGallery-slider.fadeM .lightGallery-slide {
|
191
|
+
transition: opacity 0.4s ease 0s;
|
192
|
+
-moz-transition: opacity 0.4s ease 0s;
|
193
|
+
-webkit-transition: opacity 0.4s ease 0s;
|
194
|
+
-o-transition: opacity 0.4s ease 0s;
|
195
|
+
-ms-transition: opacity 0.4s ease 0s;
|
196
|
+
}
|
197
|
+
#lightGallery-slider.slide .lightGallery-slide {
|
198
|
+
transform: translate3d(100%, 0px, 0px);
|
199
|
+
-moz-transform: translate3d(100%, 0px, 0px);
|
200
|
+
-ms-transform: translate3d(100%, 0px, 0px);
|
201
|
+
-webkit-transform: translate3d(100%, 0px, 0px);
|
202
|
+
-o-transform: translate3d(100%, 0px, 0px);
|
203
|
+
}
|
204
|
+
#lightGallery-slider.slide.on .lightGallery-slide {
|
205
|
+
opacity: 0;
|
206
|
+
}
|
207
|
+
#lightGallery-slider.slide .lightGallery-slide.current {
|
208
|
+
opacity: 1 !important;
|
209
|
+
transform: translate3d(0px, 0px, 0px) !important;
|
210
|
+
-moz-transform: translate3d(0px, 0px, 0px) !important;
|
211
|
+
-ms-transform: translate3d(0px, 0px, 0px) !important;
|
212
|
+
-webkit-transform: translate3d(0px, 0px, 0px) !important;
|
213
|
+
-o-transform: translate3d(0px, 0px, 0px) !important;
|
214
|
+
}
|
215
|
+
#lightGallery-slider.slide .lightGallery-slide.prevSlide {
|
216
|
+
opacity: 0;
|
217
|
+
transform: translate3d(-100%, 0px, 0px);
|
218
|
+
-moz-transform: translate3d(-100%, 0px, 0px);
|
219
|
+
-ms-transform: translate3d(-100%, 0px, 0px);
|
220
|
+
-webkit-transform: translate3d(-100%, 0px, 0px);
|
221
|
+
-o-transform: translate3d(-100%, 0px, 0px);
|
222
|
+
}
|
223
|
+
#lightGallery-slider.slide .lightGallery-slide.nextSlide {
|
224
|
+
opacity: 0;
|
225
|
+
transform: translate3d(100%, 0px, 0px);
|
226
|
+
-moz-transform: translate3d(100%, 0px, 0px);
|
227
|
+
-ms-transform: translate3d(100%, 0px, 0px);
|
228
|
+
-webkit-transform: translate3d(100%, 0px, 0px);
|
229
|
+
-o-transform: translate3d(100%, 0px, 0px);
|
230
|
+
}
|
231
|
+
#lightGallery-slider.useLeft .lightGallery-slide {
|
232
|
+
left: 100%;
|
233
|
+
}
|
234
|
+
#lightGallery-slider.useLeft.on .lightGallery-slide {
|
235
|
+
opacity: 0;
|
236
|
+
}
|
237
|
+
#lightGallery-slider.useLeft .lightGallery-slide.current {
|
238
|
+
opacity: 1 !important;
|
239
|
+
left: 0% !important;
|
240
|
+
}
|
241
|
+
#lightGallery-slider.useLeft .lightGallery-slide.prevSlide {
|
242
|
+
opacity: 0;
|
243
|
+
left: -100%;
|
244
|
+
}
|
245
|
+
#lightGallery-slider.useLeft .lightGallery-slide.nextSlide {
|
246
|
+
opacity: 0;
|
247
|
+
left: 100%;
|
248
|
+
}
|
249
|
+
#lightGallery-slider.slide.on .lightGallery-slide, #lightGallery-slider.slide.on .current, #lightGallery-slider.slide.on .prevSlide, #lightGallery-slider.slide.on .nextSlide {
|
250
|
+
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
|
251
|
+
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
|
252
|
+
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
|
253
|
+
-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
|
254
|
+
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
|
255
|
+
}
|
256
|
+
#lightGallery-slider.speed .lightGallery-slide, #lightGallery-slider.speed .current, #lightGallery-slider.speed .prevSlide, #lightGallery-slider.speed .nextSlide {
|
257
|
+
transition-duration: inherit !important;
|
258
|
+
-moz-transition-duration: inherit !important;
|
259
|
+
-webkit-transition-duration: inherit !important;
|
260
|
+
-o-transition-duration: inherit !important;
|
261
|
+
-ms-transition-duration: inherit !important;
|
262
|
+
}
|
263
|
+
#lightGallery-slider.timing .lightGallery-slide, #lightGallery-slider.timing .current, #lightGallery-slider.timing .prevSlide, #lightGallery-slider.timing .nextSlide {
|
264
|
+
transition-timing-function: inherit !important;
|
265
|
+
-moz-transition-timing-function: inherit !important;
|
266
|
+
-webkit-transition-timing-function: inherit !important;
|
267
|
+
-o-transition-timing-function: inherit !important;
|
268
|
+
-ms-transition-timing-function: inherit !important;
|
269
|
+
}
|
270
|
+
#lightGallery-slider .lightGallery-slide img {
|
271
|
+
display: inline-block;
|
272
|
+
max-height: 100%;
|
273
|
+
max-width: 100%;
|
274
|
+
cursor: -moz-grabbing;
|
275
|
+
cursor: grab;
|
276
|
+
cursor: -webkit-grab;
|
277
|
+
margin: 0;
|
278
|
+
padding: 0;
|
279
|
+
width: auto;
|
280
|
+
height: auto;
|
281
|
+
vertical-align: middle;
|
282
|
+
}
|
283
|
+
#lightGallery-Gallery .thumb_cont .thumb_inner {
|
284
|
+
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
285
|
+
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
286
|
+
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
287
|
+
-ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
288
|
+
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
289
|
+
}
|
290
|
+
@-webkit-keyframes rightEnd {
|
291
|
+
0% {
|
292
|
+
left: 0;
|
293
|
+
}
|
294
|
+
50% {
|
295
|
+
left: -30px;
|
296
|
+
}
|
297
|
+
100% {
|
298
|
+
left: 0;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
@keyframes rightEnd {
|
302
|
+
0% {
|
303
|
+
left: 0;
|
304
|
+
}
|
305
|
+
50% {
|
306
|
+
left: -30px;
|
307
|
+
}
|
308
|
+
100% {
|
309
|
+
left: 0;
|
310
|
+
}
|
311
|
+
}
|
312
|
+
@-webkit-keyframes leftEnd {
|
313
|
+
0% {
|
314
|
+
left: 0;
|
315
|
+
}
|
316
|
+
50% {
|
317
|
+
left: 30px;
|
318
|
+
}
|
319
|
+
100% {
|
320
|
+
left: 0;
|
321
|
+
}
|
322
|
+
}
|
323
|
+
@keyframes leftEnd {
|
324
|
+
0% {
|
325
|
+
left: 0;
|
326
|
+
}
|
327
|
+
50% {
|
328
|
+
left: 30px;
|
329
|
+
}
|
330
|
+
100% {
|
331
|
+
left: 0;
|
332
|
+
}
|
333
|
+
}
|
334
|
+
.lightGallery-slide .object.rightEnd {
|
335
|
+
-webkit-animation: rightEnd 0.3s;
|
336
|
+
animation: rightEnd 0.3s;
|
337
|
+
position: relative;
|
338
|
+
}
|
339
|
+
.lightGallery-slide .object.leftEnd {
|
340
|
+
-webkit-animation: leftEnd 0.3s;
|
341
|
+
animation: leftEnd 0.3s;
|
342
|
+
position: relative;
|
343
|
+
}
|
344
|
+
/*lightGallery core*/
|
345
|
+
|
346
|
+
|
347
|
+
/*action*/
|
348
|
+
#lightGallery-action {
|
349
|
+
bottom: 50px;
|
350
|
+
position: fixed;
|
351
|
+
left: 50%;
|
352
|
+
margin-left: -30px;
|
353
|
+
z-index: 9;
|
354
|
+
-webkit-backface-visibility: hidden;
|
355
|
+
}
|
356
|
+
#lightGallery-action.hasThumb {
|
357
|
+
margin-left: -46px;
|
358
|
+
}
|
359
|
+
|
360
|
+
#lightGallery-action a {
|
361
|
+
margin: 0 3px 0 0 !important;
|
362
|
+
-webkit-border-radius: 2px;
|
363
|
+
-moz-border-radius: 2px;
|
364
|
+
border-radius: 2px;
|
365
|
+
position: relative;
|
366
|
+
top: auto;
|
367
|
+
left: auto;
|
368
|
+
bottom: auto;
|
369
|
+
right: auto;
|
370
|
+
display: inline-block !important;
|
371
|
+
display: inline-block;
|
372
|
+
vertical-align: middle;
|
373
|
+
*display: inline;
|
374
|
+
*zoom: 1;
|
375
|
+
background-color: #000;
|
376
|
+
background-color: rgba(0, 0, 0, 0.65);
|
377
|
+
font-size: 16px;
|
378
|
+
width: 28px;
|
379
|
+
height: 28px;
|
380
|
+
font-family: 'Slide-icons';
|
381
|
+
color: #FFF;
|
382
|
+
cursor: pointer;
|
383
|
+
}
|
384
|
+
#lightGallery-action a.disabled {
|
385
|
+
opacity: 0.6;
|
386
|
+
filter: alpha(opacity=60);
|
387
|
+
cursor: default;
|
388
|
+
background-color: #000;
|
389
|
+
background-color: rgba(0, 0, 0, 0.65) !important;
|
390
|
+
}
|
391
|
+
#lightGallery-action a:hover, #lightGallery-action a:focus {
|
392
|
+
background-color: #000;
|
393
|
+
background-color: rgba(0, 0, 0, 0.85);
|
394
|
+
}
|
395
|
+
#lightGallery-action a#lightGallery-prev:before, #lightGallery-action a#lightGallery-next:after {
|
396
|
+
left: 5px;
|
397
|
+
bottom: 3px;
|
398
|
+
position: absolute;
|
399
|
+
}
|
400
|
+
#lightGallery-action a#lightGallery-prev:before {
|
401
|
+
content: "\e01d";
|
402
|
+
}
|
403
|
+
#lightGallery-action a#lightGallery-next:after {
|
404
|
+
content: "\e01b";
|
405
|
+
}
|
406
|
+
#lightGallery-action a.cLthumb:after {
|
407
|
+
font-family: 'Slide-icons';
|
408
|
+
content: "\e01c";
|
409
|
+
left: 6px;
|
410
|
+
bottom: 4px;
|
411
|
+
font-size: 16px;
|
412
|
+
position: absolute;
|
413
|
+
}
|
414
|
+
/*action*/
|
415
|
+
|
416
|
+
/*counter*/
|
417
|
+
#lightGallery_counter {
|
418
|
+
bottom: 52px;
|
419
|
+
text-align: center;
|
420
|
+
width: 100%;
|
421
|
+
position: absolute;
|
422
|
+
z-index: 9;
|
423
|
+
color: #FFFFFF;
|
424
|
+
}
|
425
|
+
/*lightGallery Thumb*/
|
426
|
+
#lightGallery-Gallery .thumb_cont {
|
427
|
+
position: absolute;
|
428
|
+
bottom: 0;
|
429
|
+
width: 100%;
|
430
|
+
-webkit-box-sizing: border-box;
|
431
|
+
-moz-box-sizing: border-box;
|
432
|
+
box-sizing: border-box;
|
433
|
+
background-color: #000000;
|
434
|
+
-webkit-transition: max-height 0.4s ease-in-out;
|
435
|
+
-moz-transition: max-height 0.4s ease-in-out;
|
436
|
+
-o-transition: max-height 0.4s ease-in-out;
|
437
|
+
-ms-transition: max-height 0.4s ease-in-out;
|
438
|
+
transition: max-height 0.4s ease-in-out;
|
439
|
+
z-index: 9;
|
440
|
+
max-height: 0;
|
441
|
+
opacity: 0;
|
442
|
+
}
|
443
|
+
#lightGallery-Gallery.open .thumb_cont {
|
444
|
+
max-height: 350px;
|
445
|
+
}
|
446
|
+
#lightGallery-Gallery .thumb_cont .thumb_inner {
|
447
|
+
margin-left: -12px;
|
448
|
+
padding: 12px;
|
449
|
+
max-height: 290px;
|
450
|
+
overflow-y: auto;
|
451
|
+
-webkit-box-sizing: content-box;
|
452
|
+
-moz-box-sizing: content-box;
|
453
|
+
box-sizing: content-box;
|
454
|
+
}
|
455
|
+
#lightGallery-Gallery .thumb_cont .thumb_info {
|
456
|
+
background-color: #333;
|
457
|
+
padding: 7px 20px;
|
458
|
+
}
|
459
|
+
#lightGallery-Gallery .thumb_cont .thumb_info .count {
|
460
|
+
color: #ffffff;
|
461
|
+
font-weight: bold;
|
462
|
+
font-size: 12px;
|
463
|
+
}
|
464
|
+
#lightGallery-Gallery .thumb_cont .thumb_info .close {
|
465
|
+
color: #FFFFFF;
|
466
|
+
display: block;
|
467
|
+
float: right !important;
|
468
|
+
width: 28px;
|
469
|
+
position: relative;
|
470
|
+
height: 28px;
|
471
|
+
border-radius: 2px;
|
472
|
+
margin-top: -4px;
|
473
|
+
background-color: #000;
|
474
|
+
background-color: rgba(0, 0, 0, 0.65);
|
475
|
+
-webkit-transition: background-color 0.3s ease 0s;
|
476
|
+
-moz-transition: background-color 0.3s ease 0s;
|
477
|
+
-o-transition: background-color 0.3s ease 0s;
|
478
|
+
-ms-transition: background-color 0.3s ease 0s;
|
479
|
+
transition: background-color 0.3s ease 0s;
|
480
|
+
z-index: 1090;
|
481
|
+
cursor: pointer;
|
482
|
+
}
|
483
|
+
#lightGallery-Gallery .thumb_cont .thumb_info .close i:after {
|
484
|
+
left: 6px;
|
485
|
+
position: absolute;
|
486
|
+
top: 4px;
|
487
|
+
}
|
488
|
+
#lightGallery-Gallery .thumb_cont .thumb_info .close i:after, #lightGallery-close:after {
|
489
|
+
content: "\e01a";
|
490
|
+
font-family: 'Slide-icons';
|
491
|
+
font-style: normal;
|
492
|
+
font-size: 16px;
|
493
|
+
}
|
494
|
+
#lightGallery-Gallery .thumb_cont .thumb_info .close:hover {
|
495
|
+
text-decoration: none;
|
496
|
+
background-color: #000;
|
497
|
+
background-color: rgba(0, 0, 0, 1);
|
498
|
+
}
|
499
|
+
#lightGallery-Gallery .thumb_cont .thumb {
|
500
|
+
display: inline-block !important;
|
501
|
+
vertical-align: middle;
|
502
|
+
text-align: center;
|
503
|
+
*display: inline;
|
504
|
+
/* IE7 inline-block hack */
|
505
|
+
|
506
|
+
*zoom: 1;
|
507
|
+
margin-bottom: 4px;
|
508
|
+
height: 50px;
|
509
|
+
width: 50px;
|
510
|
+
opacity: 0.6;
|
511
|
+
filter: alpha(opacity=60);
|
512
|
+
overflow: hidden;
|
513
|
+
border-radius: 3px;
|
514
|
+
cursor: pointer;
|
515
|
+
-webkit-transition: border-color linear .2s, opacity linear .2s;
|
516
|
+
-moz-transition: border-color linear .2s, opacity linear .2s;
|
517
|
+
-o-transition: border-color linear .2s, opacity linear .2s;
|
518
|
+
-ms-transition: border-color linear .2s, opacity linear .2s;
|
519
|
+
transition: border-color linear .2s, opacity linear .2s;
|
520
|
+
}
|
521
|
+
@media (min-width: 800px) {
|
522
|
+
#lightGallery-Gallery .thumb_cont .thumb {
|
523
|
+
width: 94px;
|
524
|
+
height: 94px;
|
525
|
+
}
|
526
|
+
}
|
527
|
+
#lightGallery-Gallery .thumb_cont .thumb > img {
|
528
|
+
height: auto;
|
529
|
+
max-width: 100%;
|
530
|
+
}
|
531
|
+
#lightGallery-Gallery .thumb_cont .thumb.active, #lightGallery-Gallery .thumb_cont .thumb:hover {
|
532
|
+
opacity: 1;
|
533
|
+
filter: alpha(opacity=100);
|
534
|
+
border-color: #ffffff;
|
535
|
+
}
|
536
|
+
/*lightGallery Thumb*/
|
537
|
+
|
538
|
+
/*lightGallery Video*/
|
539
|
+
#lightGallery-slider .video_cont {
|
540
|
+
display: inline-block;
|
541
|
+
max-height: 100%;
|
542
|
+
max-width: 100%;
|
543
|
+
margin: 0;
|
544
|
+
padding: 0;
|
545
|
+
width: auto;
|
546
|
+
height: auto;
|
547
|
+
vertical-align: middle;
|
548
|
+
}
|
549
|
+
#lightGallery-slider .video_cont {
|
550
|
+
background: none;
|
551
|
+
max-width: 1140px;
|
552
|
+
max-height: 100%;
|
553
|
+
width: 100%;
|
554
|
+
box-sizing: border-box;
|
555
|
+
-webkit-box-sizing: border-box;
|
556
|
+
-moz-box-sizing: border-box;
|
557
|
+
}
|
558
|
+
#lightGallery-slider .video {
|
559
|
+
width: 100%;
|
560
|
+
height: 0;
|
561
|
+
padding-bottom: 56.25%;
|
562
|
+
overflow: hidden;
|
563
|
+
position: relative;
|
564
|
+
}
|
565
|
+
#lightGallery-slider .video .object {
|
566
|
+
width: 100%!important;
|
567
|
+
height: 100%!important;
|
568
|
+
position: absolute;
|
569
|
+
top: 0;
|
570
|
+
left: 0;
|
571
|
+
}
|
572
|
+
/*lightGallery Video*/
|
573
|
+
|
574
|
+
|
575
|
+
|
576
|
+
|
577
|
+
|
578
|
+
|
579
|
+
/*lightGallery Close*/
|
580
|
+
#lightGallery-close {
|
581
|
+
color: #FFFFFF;
|
582
|
+
height: 28px;
|
583
|
+
position: absolute;
|
584
|
+
right: 20px;
|
585
|
+
top: 20px;
|
586
|
+
width: 28px;
|
587
|
+
z-index: 1090;
|
588
|
+
cursor: pointer;
|
589
|
+
background-color: #000;
|
590
|
+
border-radius: 2px;
|
591
|
+
background-color: #000;
|
592
|
+
background-color: rgba(0, 0, 0, 0.65);
|
593
|
+
-webkit-transition: background-color 0.3s ease;
|
594
|
+
-moz-transition: background-color 0.3s ease;
|
595
|
+
-o-transition: background-color 0.3s ease;
|
596
|
+
-ms-transition: background-color 0.3s ease;
|
597
|
+
transition: background-color 0.3s ease;
|
598
|
+
-webkit-backface-visibility: hidden;
|
599
|
+
}
|
600
|
+
#lightGallery-close:after {
|
601
|
+
position: absolute;
|
602
|
+
right: 6px;
|
603
|
+
top: 3px;
|
604
|
+
}
|
605
|
+
#lightGallery-close:hover {
|
606
|
+
text-decoration: none;
|
607
|
+
background-color: #000;
|
608
|
+
}
|
609
|
+
.customHtml {
|
610
|
+
background: none repeat scroll 0 0 black;
|
611
|
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
|
612
|
+
color: #fff;
|
613
|
+
font-family: Arial, sans-serif;
|
614
|
+
height: 70px;
|
615
|
+
left: 0;
|
616
|
+
position: absolute;
|
617
|
+
right: 0;
|
618
|
+
top: 0;
|
619
|
+
z-index: 9;
|
620
|
+
}
|
621
|
+
.customHtml p {
|
622
|
+
font-size: 14px;
|
623
|
+
}
|
624
|
+
.customHtml > h4 {
|
625
|
+
font-family: Arial, sans-serif;
|
626
|
+
font-weight: bold;
|
627
|
+
margin-bottom: 5px;
|
628
|
+
margin-top: 15px;
|
629
|
+
}
|