Skip to content

Commit b5273d6

Browse files
1
0 parents  commit b5273d6

24 files changed

+3705
-0
lines changed

background.png

440 KB
Loading

css/animate.css

Lines changed: 2744 additions & 0 deletions
Large diffs are not rendered by default.

css/bootstrap.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/font-awesome.min.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/owl.carousel.css

Lines changed: 375 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,375 @@
1+
/**
2+
* Owl Carousel v2.3.4
3+
* Copyright 2013-2018 David Deutsch
4+
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
5+
*/
6+
/*
7+
* Owl Carousel - Core
8+
*/
9+
.owl-carousels {
10+
display: none;
11+
width: 100%;
12+
-webkit-tap-highlight-color: transparent;
13+
/* position relative and z-index fix webkit rendering fonts issue */
14+
position: relative;
15+
z-index: 1; }
16+
.owl-carousels .owl-stage {
17+
position: relative;
18+
-ms-touch-action: pan-Y;
19+
touch-action: manipulation;
20+
-moz-backface-visibility: hidden;
21+
/* fix firefox animation glitch */ }
22+
.owl-carousels .owl-stage:after {
23+
content: ".";
24+
display: block;
25+
clear: both;
26+
visibility: hidden;
27+
line-height: 0;
28+
height: 0; }
29+
.owl-carousels .owl-stage-outer {
30+
position: relative;
31+
overflow: hidden;
32+
/* fix for flashing background */
33+
-webkit-transform: translate3d(0px, 0px, 0px); }
34+
.owl-carousels .owl-wrapper,
35+
.owl-carousels .owl-item {
36+
-webkit-backface-visibility: hidden;
37+
-moz-backface-visibility: hidden;
38+
-ms-backface-visibility: hidden;
39+
-webkit-transform: translate3d(0, 0, 0);
40+
-moz-transform: translate3d(0, 0, 0);
41+
-ms-transform: translate3d(0, 0, 0); }
42+
.owl-carousels .owl-item {
43+
position: relative;
44+
min-height: 1px;
45+
float: left;
46+
-webkit-backface-visibility: hidden;
47+
-webkit-tap-highlight-color: transparent;
48+
-webkit-touch-callout: none; }
49+
.owl-carousels .owl-item img {
50+
display: block;
51+
width: 100%; }
52+
.owl-carousels .owl-nav.disabled,
53+
.owl-carousels .owl-dots.disabled {
54+
display: none; }
55+
.owl-carousels .owl-nav .owl-prev,
56+
.owl-carousels .owl-nav .owl-next,
57+
.owl-carousels .owl-dot {
58+
cursor: pointer;
59+
-webkit-user-select: none;
60+
-khtml-user-select: none;
61+
-moz-user-select: none;
62+
-ms-user-select: none;
63+
user-select: none; }
64+
.owl-carousels .owl-nav button.owl-prev,
65+
.owl-carousels .owl-nav button.owl-next,
66+
.owl-carousels button.owl-dot {
67+
background: none;
68+
color: inherit;
69+
border: none;
70+
padding: 0 !important;
71+
font: inherit; }
72+
.owl-carousels.owl-loaded {
73+
display: block; }
74+
.owl-carousels.owl-loading {
75+
opacity: 0;
76+
display: block; }
77+
.owl-carousels.owl-hidden {
78+
opacity: 0; }
79+
.owl-carousels.owl-refresh .owl-item {
80+
visibility: hidden; }
81+
.owl-carousels.owl-drag .owl-item {
82+
-ms-touch-action: pan-y;
83+
touch-action: pan-y;
84+
-webkit-user-select: none;
85+
-moz-user-select: none;
86+
-ms-user-select: none;
87+
user-select: none; }
88+
.owl-carousels.owl-grab {
89+
cursor: move;
90+
cursor: grab; }
91+
.owl-carousels.owl-rtl {
92+
direction: rtl; }
93+
.owl-carousels.owl-rtl .owl-item {
94+
float: right; }
95+
96+
/* No Js */
97+
.no-js .owl-carousels {
98+
display: block; }
99+
100+
/*
101+
* Owl Carousel - Animate Plugin
102+
*/
103+
.owl-carousels .animated {
104+
animation-duration: 1000ms;
105+
animation-fill-mode: both; }
106+
107+
.owl-carousels .owl-animated-in {
108+
z-index: 0; }
109+
110+
.owl-carousels .owl-animated-out {
111+
z-index: 1; }
112+
113+
.owl-carousels .fadeOut {
114+
animation-name: fadeOut; }
115+
116+
@keyframes fadeOut {
117+
0% {
118+
opacity: 1; }
119+
100% {
120+
opacity: 0; } }
121+
122+
/*
123+
* Owl Carousel - Auto Height Plugin
124+
*/
125+
.owl-height {
126+
transition: height 500ms ease-in-out; }
127+
128+
/*
129+
* Owl Carousel - Lazy Load Plugin
130+
*/
131+
.owl-carousels .owl-item {
132+
/**
133+
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
134+
calculation of the height of the owl-item that breaks page layouts
135+
*/ }
136+
.owl-carousels .owl-item .owl-lazy {
137+
opacity: 0;
138+
transition: opacity 400ms ease; }
139+
.owl-carousels .owl-item .owl-lazy[src^=""], .owl-carousels .owl-item .owl-lazy:not([src]) {
140+
max-height: 0; }
141+
.owl-carousels .owl-item img.owl-lazy {
142+
transform-style: preserve-3d; }
143+
144+
/*
145+
* Owl Carousel - Video Plugin
146+
*/
147+
.owl-carousels .owl-video-wrapper {
148+
position: relative;
149+
height: 100%;
150+
background: #000; }
151+
152+
.owl-carousels .owl-video-play-icon {
153+
position: absolute;
154+
height: 80px;
155+
width: 80px;
156+
left: 50%;
157+
top: 50%;
158+
margin-left: -40px;
159+
margin-top: -40px;
160+
background: url("owl.video.play.png") no-repeat;
161+
cursor: pointer;
162+
z-index: 1;
163+
-webkit-backface-visibility: hidden;
164+
transition: transform 100ms ease; }
165+
166+
.owl-carousels .owl-video-play-icon:hover {
167+
-ms-transform: scale(1.3, 1.3);
168+
transform: scale(1.3, 1.3); }
169+
170+
.owl-carousels .owl-video-playing .owl-video-tn,
171+
.owl-carousels .owl-video-playing .owl-video-play-icon {
172+
display: none; }
173+
174+
.owl-carousels .owl-video-tn {
175+
opacity: 0;
176+
height: 100%;
177+
background-position: center center;
178+
background-repeat: no-repeat;
179+
background-size: contain;
180+
transition: opacity 400ms ease; }
181+
182+
.owl-carousels .owl-video-frame {
183+
position: relative;
184+
z-index: 1;
185+
height: 100%;
186+
width: 100%; }
187+
188+
189+
190+
/**
191+
* Owl Carousel v2.3.4
192+
* Copyright 2013-2018 David Deutsch
193+
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
194+
*/
195+
/*
196+
* Owl Carousel - Core
197+
*/
198+
.owl-carousel {
199+
display: none;
200+
width: 100%;
201+
-webkit-tap-highlight-color: transparent;
202+
/* position relative and z-index fix webkit rendering fonts issue */
203+
position: relative;
204+
z-index: 1; }
205+
.owl-carousel .owl-stage {
206+
position: relative;
207+
-ms-touch-action: pan-Y;
208+
touch-action: manipulation;
209+
-moz-backface-visibility: hidden;
210+
/* fix firefox animation glitch */ }
211+
.owl-carousel .owl-stage:after {
212+
content: ".";
213+
display: block;
214+
clear: both;
215+
visibility: hidden;
216+
line-height: 0;
217+
height: 0; }
218+
.owl-carousel .owl-stage-outer {
219+
position: relative;
220+
overflow: hidden;
221+
/* fix for flashing background */
222+
-webkit-transform: translate3d(0px, 0px, 0px); }
223+
.owl-carousel .owl-wrapper,
224+
.owl-carousel .owl-item {
225+
-webkit-backface-visibility: hidden;
226+
-moz-backface-visibility: hidden;
227+
-ms-backface-visibility: hidden;
228+
-webkit-transform: translate3d(0, 0, 0);
229+
-moz-transform: translate3d(0, 0, 0);
230+
-ms-transform: translate3d(0, 0, 0); }
231+
.owl-carousel .owl-item {
232+
position: relative;
233+
min-height: 1px;
234+
float: left;
235+
-webkit-backface-visibility: hidden;
236+
-webkit-tap-highlight-color: transparent;
237+
-webkit-touch-callout: none; }
238+
.owl-carousel .owl-item img {
239+
display: block;
240+
width: 100%; }
241+
.owl-carousel .owl-nav.disabled,
242+
.owl-carousel .owl-dots.disabled {
243+
display: none; }
244+
.owl-carousel .owl-nav .owl-prev,
245+
.owl-carousel .owl-nav .owl-next,
246+
.owl-carousel .owl-dot {
247+
cursor: pointer;
248+
-webkit-user-select: none;
249+
-khtml-user-select: none;
250+
-moz-user-select: none;
251+
-ms-user-select: none;
252+
user-select: none; }
253+
.owl-carousel .owl-nav button.owl-prev,
254+
.owl-carousel .owl-nav button.owl-next,
255+
.owl-carousel button.owl-dot {
256+
background: none;
257+
color: inherit;
258+
border: none;
259+
padding: 0 !important;
260+
font: inherit; }
261+
.owl-carousel.owl-loaded {
262+
display: block; }
263+
.owl-carousel.owl-loading {
264+
opacity: 0;
265+
display: block; }
266+
.owl-carousel.owl-hidden {
267+
opacity: 0; }
268+
.owl-carousel.owl-refresh .owl-item {
269+
visibility: hidden; }
270+
.owl-carousel.owl-drag .owl-item {
271+
-ms-touch-action: pan-y;
272+
touch-action: pan-y;
273+
-webkit-user-select: none;
274+
-moz-user-select: none;
275+
-ms-user-select: none;
276+
user-select: none; }
277+
.owl-carousel.owl-grab {
278+
cursor: move;
279+
cursor: grab; }
280+
.owl-carousel.owl-rtl {
281+
direction: rtl; }
282+
.owl-carousel.owl-rtl .owl-item {
283+
float: right; }
284+
285+
/* No Js */
286+
.no-js .owl-carousel {
287+
display: block; }
288+
289+
/*
290+
* Owl Carousel - Animate Plugin
291+
*/
292+
.owl-carousel .animated {
293+
animation-duration: 1000ms;
294+
animation-fill-mode: both; }
295+
296+
.owl-carousel .owl-animated-in {
297+
z-index: 0; }
298+
299+
.owl-carousel .owl-animated-out {
300+
z-index: 1; }
301+
302+
.owl-carousel .fadeOut {
303+
animation-name: fadeOut; }
304+
305+
@keyframes fadeOut {
306+
0% {
307+
opacity: 1; }
308+
100% {
309+
opacity: 0; } }
310+
311+
/*
312+
* Owl Carousel - Auto Height Plugin
313+
*/
314+
.owl-height {
315+
transition: height 500ms ease-in-out; }
316+
317+
/*
318+
* Owl Carousel - Lazy Load Plugin
319+
*/
320+
.owl-carousel .owl-item {
321+
/**
322+
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
323+
calculation of the height of the owl-item that breaks page layouts
324+
*/ }
325+
.owl-carousel .owl-item .owl-lazy {
326+
opacity: 0;
327+
transition: opacity 400ms ease; }
328+
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
329+
max-height: 0; }
330+
.owl-carousel .owl-item img.owl-lazy {
331+
transform-style: preserve-3d; }
332+
333+
/*
334+
* Owl Carousel - Video Plugin
335+
*/
336+
.owl-carousel .owl-video-wrapper {
337+
position: relative;
338+
height: 100%;
339+
background: #000; }
340+
341+
.owl-carousel .owl-video-play-icon {
342+
position: absolute;
343+
height: 80px;
344+
width: 80px;
345+
left: 50%;
346+
top: 50%;
347+
margin-left: -40px;
348+
margin-top: -40px;
349+
background: url("owl.video.play.png") no-repeat;
350+
cursor: pointer;
351+
z-index: 1;
352+
-webkit-backface-visibility: hidden;
353+
transition: transform 100ms ease; }
354+
355+
.owl-carousel .owl-video-play-icon:hover {
356+
-ms-transform: scale(1.3, 1.3);
357+
transform: scale(1.3, 1.3); }
358+
359+
.owl-carousel .owl-video-playing .owl-video-tn,
360+
.owl-carousel .owl-video-playing .owl-video-play-icon {
361+
display: none; }
362+
363+
.owl-carousel .owl-video-tn {
364+
opacity: 0;
365+
height: 100%;
366+
background-position: center center;
367+
background-repeat: no-repeat;
368+
background-size: contain;
369+
transition: opacity 400ms ease; }
370+
371+
.owl-carousel .owl-video-frame {
372+
position: relative;
373+
z-index: 1;
374+
height: 100%;
375+
width: 100%; }

0 commit comments

Comments
 (0)