jekyll-theme-pga-default 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/component.html +29 -0
- data/_includes/foot.html +3 -0
- data/_includes/head.html +20 -0
- data/_includes/header.html +34 -0
- data/_layouts/default.html +12 -1
- data/_sass/_articles.scss +324 -0
- data/_sass/_buttons.scss +17 -0
- data/_sass/_cards.scss +26 -0
- data/_sass/_components.scss +577 -0
- data/_sass/_font-awesome.scss +2337 -0
- data/_sass/_fonts.scss +0 -0
- data/_sass/_footer.scss +93 -0
- data/_sass/_form.scss +81 -0
- data/_sass/_functions.scss +86 -0
- data/_sass/_header.scss +282 -0
- data/_sass/_highlight.scss +163 -0
- data/_sass/_icons-font.scss +47 -0
- data/_sass/_icons.scss +3 -0
- data/_sass/_jumbotron.scss +90 -0
- data/_sass/_keyframes.scss +23 -0
- data/_sass/_loading.scss +43 -0
- data/_sass/_mixin.scss +63 -0
- data/_sass/_navs.scss +64 -0
- data/_sass/_owl.carousel.scss +368 -0
- data/_sass/_reset.scss +5 -0
- data/_sass/_styleguide.scss +273 -0
- data/_sass/_table.scss +160 -0
- data/_sass/_tiles.scss +196 -0
- data/_sass/_typography.scss +151 -0
- data/_sass/_variables-custom.scss +612 -0
- data/_sass/components/_breadcrumbs.scss +42 -0
- data/_sass/components/_button.scss +17 -0
- data/_sass/components/_footer.scss +92 -0
- data/_sass/components/_header.scss +336 -0
- data/_sass/components/_nav-sidebar.scss +217 -0
- data/assets/fonts/.DS_Store +0 -0
- data/assets/fonts/icomoon/icomoon.eot +0 -0
- data/assets/fonts/icomoon/icomoon.svg +16 -0
- data/assets/fonts/icomoon/icomoon.ttf +0 -0
- data/assets/fonts/icomoon/icomoon.woff +0 -0
- data/assets/images/pga-logo-tm.svg +72 -0
- data/assets/scripts/bootstrap.min.js +7 -0
- data/assets/scripts/jquery-3.3.1.min.js +2 -0
- data/assets/scripts/popper.min.js +5 -0
- metadata +46 -3
@@ -0,0 +1,47 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'icomoon';
|
3
|
+
src: url("../assets/fonts/icomoon/icomoon.eot?ozcvam");
|
4
|
+
src: url("../assets/fonts/icomoon/icomoon.eot?ozcvam#iefix") format('embedded-opentype'), url("../assets/fonts/icomoon/icomoon.ttf?ozcvam") format('truetype'), url("../assets/fonts/icomoon/icomoon.woff?ozcvam") format('woff'), url("../assets/fonts/icomoon/icomoon.svg?ozcvam#icomoon") format('svg');
|
5
|
+
font-weight: normal;
|
6
|
+
font-style: normal;
|
7
|
+
}
|
8
|
+
|
9
|
+
.icon {
|
10
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
11
|
+
font-family: 'icomoon' !important;
|
12
|
+
speak: none;
|
13
|
+
font-style: normal;
|
14
|
+
font-weight: normal;
|
15
|
+
font-variant: normal;
|
16
|
+
text-transform: none;
|
17
|
+
line-height: 1;
|
18
|
+
/* Better Font Rendering =========== */
|
19
|
+
-webkit-font-smoothing: antialiased;
|
20
|
+
-moz-osx-font-smoothing: grayscale;
|
21
|
+
}
|
22
|
+
|
23
|
+
.icon-arrow-right:before {
|
24
|
+
content: "\e900";
|
25
|
+
font-size: 65%;
|
26
|
+
}
|
27
|
+
|
28
|
+
.icon-arrow-left:before {
|
29
|
+
content: "\e901";
|
30
|
+
font-size: 65%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.icon-plus:before {
|
34
|
+
content: "\e902";
|
35
|
+
}
|
36
|
+
|
37
|
+
.icon-minus:before {
|
38
|
+
content: "\e903";
|
39
|
+
}
|
40
|
+
|
41
|
+
.icon-arrow-down:before {
|
42
|
+
content: "\e904";
|
43
|
+
}
|
44
|
+
|
45
|
+
.icon-arrow-up:before {
|
46
|
+
content: "\e905";
|
47
|
+
}
|
data/_sass/_icons.scss
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
.jumbotron {
|
2
|
+
position: relative;
|
3
|
+
overflow: hidden;
|
4
|
+
padding: 0 0 36%;
|
5
|
+
margin-bottom: 0;
|
6
|
+
border-radius: 0;
|
7
|
+
@include media-breakpoint-down(lg) {
|
8
|
+
padding: 0 0 45%;
|
9
|
+
}
|
10
|
+
@include media-breakpoint-down(md) {
|
11
|
+
padding: 0 0 55%;
|
12
|
+
}
|
13
|
+
@include media-breakpoint-down(sm) {
|
14
|
+
padding: 0 0 80%;
|
15
|
+
}
|
16
|
+
|
17
|
+
&:after {
|
18
|
+
content: "";
|
19
|
+
opacity: 0.7;
|
20
|
+
background-image: linear-gradient(to bottom, rgba(0, 35, 75, 0), $navy);
|
21
|
+
position: absolute;
|
22
|
+
left: 0;
|
23
|
+
right: 0;
|
24
|
+
top: 70%;
|
25
|
+
bottom: 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
.btn {
|
29
|
+
margin-top: 0.25rem;
|
30
|
+
}
|
31
|
+
|
32
|
+
h1,
|
33
|
+
h2,
|
34
|
+
h3,
|
35
|
+
h4,
|
36
|
+
h5,
|
37
|
+
h6,
|
38
|
+
p {
|
39
|
+
color: theme-color("secondary");
|
40
|
+
}
|
41
|
+
|
42
|
+
p {
|
43
|
+
max-width: 310px;
|
44
|
+
}
|
45
|
+
|
46
|
+
h1 {
|
47
|
+
margin-bottom: 30px;
|
48
|
+
}
|
49
|
+
|
50
|
+
.jumbotron-body.text-center {
|
51
|
+
p {
|
52
|
+
max-width: 100%;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
.jumbotron-image {
|
58
|
+
position: absolute;
|
59
|
+
min-width: 100%;
|
60
|
+
min-height: 100%;
|
61
|
+
top: 50%;
|
62
|
+
left: 50%;
|
63
|
+
transform: translate(-50%, -50%);
|
64
|
+
}
|
65
|
+
|
66
|
+
.jumbotron-body {
|
67
|
+
position: absolute;
|
68
|
+
left: 0;
|
69
|
+
right: 0;
|
70
|
+
top: 50%;
|
71
|
+
transform: translateY(-50%);
|
72
|
+
z-index: 10;
|
73
|
+
}
|
74
|
+
|
75
|
+
.jumbotron-thin {
|
76
|
+
padding: 0 0 18%;
|
77
|
+
@include media-breakpoint-down(lg) {
|
78
|
+
padding: 0 0 23%;
|
79
|
+
}
|
80
|
+
@include media-breakpoint-down(md) {
|
81
|
+
padding: 0 0 29%;
|
82
|
+
}
|
83
|
+
@include media-breakpoint-down(sm) {
|
84
|
+
padding: 0 0 40%;
|
85
|
+
}
|
86
|
+
|
87
|
+
h1 {
|
88
|
+
margin-bottom: 0;
|
89
|
+
}
|
90
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
@include keyframes(fadeIn) {
|
2
|
+
0% {
|
3
|
+
opacity: 0;
|
4
|
+
}
|
5
|
+
|
6
|
+
100% {
|
7
|
+
opacity: 1;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
@include keyframes(jump) {
|
11
|
+
0% {
|
12
|
+
transform: translateY(0);
|
13
|
+
}
|
14
|
+
|
15
|
+
50% {
|
16
|
+
transform: translateY(40px);
|
17
|
+
}
|
18
|
+
|
19
|
+
100% {
|
20
|
+
// opacity: 1;
|
21
|
+
transform: translateY(0);
|
22
|
+
}
|
23
|
+
}
|
data/_sass/_loading.scss
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
body {
|
2
|
+
-webkit-transition: 0.75s padding ease-in-out, 0.75s background ease-in-out, 0.75s color ease-in-out, 0.5s right ease-in-out;
|
3
|
+
-moz-transition: 0.75s padding ease-in-out, 0.75s background ease-in-out, 0.75s color ease-in-out, 0.5s right ease-in-out;
|
4
|
+
-ms-transition: 0.75s padding ease-in-out, 0.75s background ease-in-out, 0.75s color ease-in-out, 0.5s right ease-in-out;
|
5
|
+
-o-transition: 0.75s padding ease-in-out, 0.75s background ease-in-out, 0.75s color ease-in-out, 0.5s right ease-in-out;
|
6
|
+
transition: 0.75s padding ease-in-out, 0.75s background ease-in-out, 0.75s color ease-in-out, 0.5s right ease-in-out;
|
7
|
+
@include animation(0.75s, 1s, fadeIn, both);
|
8
|
+
font-display: fallback;
|
9
|
+
}
|
10
|
+
// .wf-loading {
|
11
|
+
// background: url("/assets/images/icons/icon-loader.gif") no-repeat center center;
|
12
|
+
// height: 100%;
|
13
|
+
// overflow: hidden;
|
14
|
+
//
|
15
|
+
// .spinner {
|
16
|
+
// animation: rotate 2s linear infinite;
|
17
|
+
// z-index: 2;
|
18
|
+
// position: absolute;
|
19
|
+
// top: 50%;
|
20
|
+
// left: 50%;
|
21
|
+
// margin: -25px 0 0 -25px;
|
22
|
+
// width: 50px;
|
23
|
+
// height: 50px;
|
24
|
+
// opacity: 1;
|
25
|
+
// }
|
26
|
+
// }
|
27
|
+
//
|
28
|
+
// .spinner {
|
29
|
+
// opacity: 0;
|
30
|
+
// transition: opacity 0.5s ease-in;
|
31
|
+
// }
|
32
|
+
//
|
33
|
+
// .wf-active *,
|
34
|
+
// .wf-inactive * {
|
35
|
+
// -webkit-transition: opacity 1s ease-out;
|
36
|
+
// -moz-transition: opacity 1s ease-out;
|
37
|
+
// -o-transition: opacity 1s ease-out;
|
38
|
+
// transition: opacity 1s ease-out;
|
39
|
+
// }
|
40
|
+
//
|
41
|
+
// .wf-loading * {
|
42
|
+
// opacity: 0;
|
43
|
+
// }
|
data/_sass/_mixin.scss
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
// Triangle
|
2
|
+
@mixin badge-triangle-variant($bg) {
|
3
|
+
color: color-yiq($bg);
|
4
|
+
background-color: $bg;
|
5
|
+
|
6
|
+
&:after {
|
7
|
+
border-right-color: darken($bg, 10%);
|
8
|
+
}
|
9
|
+
}
|
10
|
+
// Transition
|
11
|
+
@mixin transition($transition...) {
|
12
|
+
-moz-transition: $transition;
|
13
|
+
-o-transition: $transition;
|
14
|
+
-webkit-transition: $transition;
|
15
|
+
transition: $transition;
|
16
|
+
}
|
17
|
+
// Keyframe
|
18
|
+
@mixin keyframes($animation-name) {
|
19
|
+
@-webkit-keyframes #{$animation-name} {
|
20
|
+
@content;
|
21
|
+
}
|
22
|
+
@-moz-keyframes #{$animation-name} {
|
23
|
+
@content;
|
24
|
+
}
|
25
|
+
@-ms-keyframes #{$animation-name} {
|
26
|
+
@content;
|
27
|
+
}
|
28
|
+
@-o-keyframes #{$animation-name} {
|
29
|
+
@content;
|
30
|
+
}
|
31
|
+
@keyframes #{$animation-name} {
|
32
|
+
@content;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
// Animation
|
36
|
+
@mixin animation ($delay, $duration, $animation, $fill-mode) {
|
37
|
+
-webkit-animation-delay: $delay;
|
38
|
+
-webkit-animation-duration: $duration;
|
39
|
+
-webkit-animation-name: $animation;
|
40
|
+
-webkit-animation-fill-mode: $fill-mode;
|
41
|
+
-moz-animation-delay: $delay;
|
42
|
+
-moz-animation-duration: $duration;
|
43
|
+
-moz-animation-name: $animation;
|
44
|
+
-moz-animation-fill-mode: $fill-mode;
|
45
|
+
-o-animation-delay: $delay;
|
46
|
+
-o-animation-duration: $duration;
|
47
|
+
-o-animation-name: $animation;
|
48
|
+
-o-animation-fill-mode: $fill-mode;
|
49
|
+
animation-delay: $delay;
|
50
|
+
animation-duration: $duration;
|
51
|
+
animation-name: $animation;
|
52
|
+
animation-fill-mode: $fill-mode;
|
53
|
+
}
|
54
|
+
// Timeline point
|
55
|
+
@mixin background-image-spaced($width, $height, $margin-bottom, $image) {
|
56
|
+
// background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="#{$width}" height="#{$height + $margin-bottom}"><image width="#{$width}" height="#{$height}" xlink:href="data:image/svg+xml;base64,#{$image}" /></svg>");
|
57
|
+
}
|
58
|
+
// Alert close color
|
59
|
+
@mixin alert-close-variant($color) {
|
60
|
+
g {
|
61
|
+
stroke: $color;
|
62
|
+
}
|
63
|
+
}
|
data/_sass/_navs.scss
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
.nav-tabs {
|
2
|
+
margin-left: -$nav-tabs-link-padding-x;
|
3
|
+
margin-bottom: 40px;
|
4
|
+
|
5
|
+
.nav-link {
|
6
|
+
font-size: 0.75rem;
|
7
|
+
font-weight: 500;
|
8
|
+
padding: 12px 0;
|
9
|
+
text-transform: uppercase;
|
10
|
+
position: relative;
|
11
|
+
color: $white;
|
12
|
+
|
13
|
+
&:after {
|
14
|
+
position: absolute;
|
15
|
+
content: "";
|
16
|
+
left: $nav-tabs-link-padding-x;
|
17
|
+
right: $nav-tabs-link-padding-x;
|
18
|
+
bottom: 0;
|
19
|
+
border-bottom: 4px solid theme-color("primary");
|
20
|
+
width: 0;
|
21
|
+
@include transition(width cubic-bezier(0.83, 0.01, 0.68, 1) 0.3s)
|
22
|
+
}
|
23
|
+
|
24
|
+
&.active,
|
25
|
+
&:focus,
|
26
|
+
&:hover {
|
27
|
+
font-weight: 700;
|
28
|
+
|
29
|
+
&:after {
|
30
|
+
width: calc(100% - 1.875rem);
|
31
|
+
@include media-breakpoint-down(xs) {
|
32
|
+
width: 100%;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
.nav-tabs.nav-fill {
|
40
|
+
.nav-link {
|
41
|
+
width: fit-content;
|
42
|
+
margin: 0 auto;
|
43
|
+
|
44
|
+
&:after {
|
45
|
+
left: 0;
|
46
|
+
right: 0;
|
47
|
+
}
|
48
|
+
|
49
|
+
&.active,
|
50
|
+
&:focus,
|
51
|
+
&:hover {
|
52
|
+
font-weight: 700;
|
53
|
+
|
54
|
+
&:after {
|
55
|
+
width: 100%;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
@include media-breakpoint-down(xs) {
|
60
|
+
.nav-item {
|
61
|
+
width: 100%;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
@@ -0,0 +1,368 @@
|
|
1
|
+
.owl-carousel {
|
2
|
+
display: none;
|
3
|
+
width: 100%;
|
4
|
+
-webkit-tap-highlight-color: transparent;
|
5
|
+
/* position relative and z-index fix webkit rendering fonts issue */
|
6
|
+
position: relative;
|
7
|
+
z-index: 1;
|
8
|
+
}
|
9
|
+
|
10
|
+
.owl-carousel .owl-stage {
|
11
|
+
position: relative;
|
12
|
+
-ms-touch-action: pan-Y;
|
13
|
+
touch-action: manipulation;
|
14
|
+
-moz-backface-visibility: hidden;
|
15
|
+
/* fix firefox animation glitch */
|
16
|
+
display: flex;
|
17
|
+
}
|
18
|
+
|
19
|
+
.owl-carousel .owl-stage:after {
|
20
|
+
content: ".";
|
21
|
+
display: block;
|
22
|
+
clear: both;
|
23
|
+
visibility: hidden;
|
24
|
+
line-height: 0;
|
25
|
+
height: 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
.owl-carousel .owl-stage-outer {
|
29
|
+
position: relative;
|
30
|
+
overflow: hidden;
|
31
|
+
/* fix for flashing background */
|
32
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
33
|
+
}
|
34
|
+
|
35
|
+
.owl-carousel .owl-wrapper,
|
36
|
+
.owl-carousel .owl-item {
|
37
|
+
-webkit-backface-visibility: hidden;
|
38
|
+
-moz-backface-visibility: hidden;
|
39
|
+
-ms-backface-visibility: hidden;
|
40
|
+
-webkit-transform: translate3d(0, 0, 0);
|
41
|
+
-moz-transform: translate3d(0, 0, 0);
|
42
|
+
-ms-transform: translate3d(0, 0, 0);
|
43
|
+
}
|
44
|
+
|
45
|
+
.owl-carousel .owl-item {
|
46
|
+
position: relative;
|
47
|
+
min-height: 1px;
|
48
|
+
float: left;
|
49
|
+
-webkit-backface-visibility: hidden;
|
50
|
+
-webkit-tap-highlight-color: transparent;
|
51
|
+
-webkit-touch-callout: none;
|
52
|
+
}
|
53
|
+
|
54
|
+
.owl-carousel .owl-item img {
|
55
|
+
display: block;
|
56
|
+
width: 100%;
|
57
|
+
}
|
58
|
+
|
59
|
+
.owl-carousel .owl-nav.disabled,
|
60
|
+
.owl-carousel .owl-dots.disabled {
|
61
|
+
display: none;
|
62
|
+
}
|
63
|
+
|
64
|
+
.owl-carousel .owl-nav .owl-prev,
|
65
|
+
.owl-carousel .owl-nav .owl-next,
|
66
|
+
.owl-carousel .owl-dot {
|
67
|
+
cursor: pointer;
|
68
|
+
cursor: hand;
|
69
|
+
-webkit-user-select: none;
|
70
|
+
-khtml-user-select: none;
|
71
|
+
-moz-user-select: none;
|
72
|
+
-ms-user-select: none;
|
73
|
+
user-select: none;
|
74
|
+
}
|
75
|
+
|
76
|
+
.owl-carousel .owl-nav button.owl-prev,
|
77
|
+
.owl-carousel .owl-nav button.owl-next,
|
78
|
+
.owl-carousel button.owl-dot {
|
79
|
+
background: none;
|
80
|
+
color: inherit;
|
81
|
+
border: none;
|
82
|
+
padding: 0 !important;
|
83
|
+
display: inline-block;
|
84
|
+
font: normal normal normal 14px/1 FontAwesome;
|
85
|
+
font-size: inherit;
|
86
|
+
text-rendering: auto;
|
87
|
+
-webkit-font-smoothing: antialiased;
|
88
|
+
}
|
89
|
+
|
90
|
+
.owl-carousel .owl-nav button.owl-prev,
|
91
|
+
.owl-carousel .owl-nav button.owl-next {
|
92
|
+
border-radius: 30px;
|
93
|
+
height: 30px;
|
94
|
+
width: 30px;
|
95
|
+
border: 2px solid #0082CE;
|
96
|
+
color: #0082CE;
|
97
|
+
}
|
98
|
+
|
99
|
+
.owl-carousel.owl-loaded {
|
100
|
+
display: block;
|
101
|
+
}
|
102
|
+
|
103
|
+
.owl-carousel.owl-loading {
|
104
|
+
opacity: 0;
|
105
|
+
display: block;
|
106
|
+
}
|
107
|
+
|
108
|
+
.owl-carousel.owl-hidden {
|
109
|
+
opacity: 0;
|
110
|
+
}
|
111
|
+
|
112
|
+
.owl-carousel.owl-refresh .owl-item {
|
113
|
+
visibility: hidden;
|
114
|
+
}
|
115
|
+
|
116
|
+
.owl-carousel.owl-drag .owl-item {
|
117
|
+
-ms-touch-action: none;
|
118
|
+
touch-action: none;
|
119
|
+
-webkit-user-select: none;
|
120
|
+
-moz-user-select: none;
|
121
|
+
-ms-user-select: none;
|
122
|
+
user-select: none;
|
123
|
+
}
|
124
|
+
|
125
|
+
.owl-carousel.owl-grab {
|
126
|
+
cursor: move;
|
127
|
+
cursor: grab;
|
128
|
+
}
|
129
|
+
|
130
|
+
.owl-carousel.owl-rtl {
|
131
|
+
direction: rtl;
|
132
|
+
}
|
133
|
+
|
134
|
+
.owl-carousel.owl-rtl .owl-item {
|
135
|
+
float: right;
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
/* No Js */
|
141
|
+
|
142
|
+
.no-js .owl-carousel {
|
143
|
+
display: block;
|
144
|
+
}
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
/*
|
149
|
+
* Owl Carousel - Animate Plugin
|
150
|
+
*/
|
151
|
+
|
152
|
+
.owl-carousel .animated {
|
153
|
+
-webkit-animation-duration: 1000ms;
|
154
|
+
animation-duration: 1000ms;
|
155
|
+
-webkit-animation-fill-mode: both;
|
156
|
+
animation-fill-mode: both;
|
157
|
+
}
|
158
|
+
|
159
|
+
.owl-carousel .owl-animated-in {
|
160
|
+
z-index: 0;
|
161
|
+
}
|
162
|
+
|
163
|
+
.owl-carousel .owl-animated-out {
|
164
|
+
z-index: 1;
|
165
|
+
}
|
166
|
+
|
167
|
+
.owl-carousel .fadeOut {
|
168
|
+
-webkit-animation-name: fadeOut;
|
169
|
+
animation-name: fadeOut;
|
170
|
+
}
|
171
|
+
|
172
|
+
@-webkit-keyframes fadeOut {
|
173
|
+
0% {
|
174
|
+
opacity: 1;
|
175
|
+
}
|
176
|
+
100% {
|
177
|
+
opacity: 0;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
@keyframes fadeOut {
|
182
|
+
0% {
|
183
|
+
opacity: 1;
|
184
|
+
}
|
185
|
+
100% {
|
186
|
+
opacity: 0;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
/*
|
193
|
+
* Owl Carousel - Auto Height Plugin
|
194
|
+
*/
|
195
|
+
|
196
|
+
.owl-height {
|
197
|
+
transition: height 500ms ease-in-out;
|
198
|
+
}
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
/*
|
203
|
+
* Owl Carousel - Lazy Load Plugin
|
204
|
+
*/
|
205
|
+
|
206
|
+
.owl-carousel .owl-item .owl-lazy {
|
207
|
+
opacity: 0;
|
208
|
+
transition: opacity 400ms ease;
|
209
|
+
}
|
210
|
+
|
211
|
+
.owl-carousel .owl-item img.owl-lazy {
|
212
|
+
-webkit-transform-style: preserve-3d;
|
213
|
+
transform-style: preserve-3d;
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
/*
|
219
|
+
* Owl Carousel - Video Plugin
|
220
|
+
*/
|
221
|
+
|
222
|
+
.owl-carousel .owl-video-wrapper {
|
223
|
+
position: relative;
|
224
|
+
height: 100%;
|
225
|
+
background: #000;
|
226
|
+
}
|
227
|
+
|
228
|
+
.owl-carousel .owl-video-play-icon {
|
229
|
+
position: absolute;
|
230
|
+
height: 80px;
|
231
|
+
width: 80px;
|
232
|
+
left: 50%;
|
233
|
+
top: 50%;
|
234
|
+
margin-left: -40px;
|
235
|
+
margin-top: -40px;
|
236
|
+
background: url("owl.video.play.png") no-repeat;
|
237
|
+
cursor: pointer;
|
238
|
+
z-index: 1;
|
239
|
+
-webkit-backface-visibility: hidden;
|
240
|
+
transition: -webkit-transform 100ms ease;
|
241
|
+
transition: transform 100ms ease;
|
242
|
+
}
|
243
|
+
|
244
|
+
.owl-carousel .owl-video-play-icon:hover {
|
245
|
+
-webkit-transform: scale(1.3, 1.3);
|
246
|
+
-ms-transform: scale(1.3, 1.3);
|
247
|
+
transform: scale(1.3, 1.3);
|
248
|
+
}
|
249
|
+
|
250
|
+
.owl-carousel .owl-video-playing .owl-video-tn,
|
251
|
+
.owl-carousel .owl-video-playing .owl-video-play-icon {
|
252
|
+
display: none;
|
253
|
+
}
|
254
|
+
|
255
|
+
.owl-carousel .owl-video-tn {
|
256
|
+
opacity: 0;
|
257
|
+
height: 100%;
|
258
|
+
background-position: center center;
|
259
|
+
background-repeat: no-repeat;
|
260
|
+
background-size: contain;
|
261
|
+
transition: opacity 400ms ease;
|
262
|
+
}
|
263
|
+
|
264
|
+
.owl-carousel .owl-video-frame {
|
265
|
+
position: relative;
|
266
|
+
z-index: 1;
|
267
|
+
height: 100%;
|
268
|
+
width: 100%;
|
269
|
+
}
|
270
|
+
|
271
|
+
|
272
|
+
|
273
|
+
|
274
|
+
/**
|
275
|
+
* Owl Carousel v2.3.0
|
276
|
+
* Copyright 2013-2017 David Deutsch
|
277
|
+
* Licensed under ()
|
278
|
+
*/
|
279
|
+
|
280
|
+
|
281
|
+
/*
|
282
|
+
* Default theme - Owl Carousel CSS File
|
283
|
+
*/
|
284
|
+
|
285
|
+
.owl-theme .owl-nav {
|
286
|
+
margin-top: 10px;
|
287
|
+
text-align: center;
|
288
|
+
-webkit-tap-highlight-color: transparent;
|
289
|
+
}
|
290
|
+
|
291
|
+
.owl-theme .owl-nav [class*='owl-'] {
|
292
|
+
color: #FFF;
|
293
|
+
font-size: 14px;
|
294
|
+
margin: 5px;
|
295
|
+
padding: 4px 7px;
|
296
|
+
background: #D6D6D6;
|
297
|
+
display: inline-block;
|
298
|
+
cursor: pointer;
|
299
|
+
border-radius: 3px;
|
300
|
+
}
|
301
|
+
|
302
|
+
.owl-theme .owl-nav [class*='owl-']:hover {
|
303
|
+
text-decoration: none;
|
304
|
+
}
|
305
|
+
|
306
|
+
.owl-theme .owl-nav button.owl-prev.disabled,
|
307
|
+
.owl-theme .owl-nav button.owl-next.disabled {
|
308
|
+
opacity: 0;
|
309
|
+
cursor: default;
|
310
|
+
}
|
311
|
+
|
312
|
+
.owl-theme .owl-nav.disabled+.owl-dots {
|
313
|
+
margin-top: 10px;
|
314
|
+
}
|
315
|
+
|
316
|
+
.owl-theme .owl-dots {
|
317
|
+
text-align: center;
|
318
|
+
-webkit-tap-highlight-color: transparent;
|
319
|
+
}
|
320
|
+
|
321
|
+
.owl-theme .owl-dots .owl-dot {
|
322
|
+
display: inline-block;
|
323
|
+
zoom: 1;
|
324
|
+
*display: inline;
|
325
|
+
}
|
326
|
+
|
327
|
+
.owl-theme .owl-dots .owl-dot span {
|
328
|
+
width: 10px;
|
329
|
+
height: 10px;
|
330
|
+
margin: 5px 7px;
|
331
|
+
background: #D6D6D6;
|
332
|
+
display: block;
|
333
|
+
-webkit-backface-visibility: visible;
|
334
|
+
transition: opacity 200ms ease;
|
335
|
+
border-radius: 30px;
|
336
|
+
}
|
337
|
+
|
338
|
+
.owl-theme .owl-dots .owl-dot.active span,
|
339
|
+
.owl-theme .owl-dots .owl-dot:hover span {
|
340
|
+
background: #869791;
|
341
|
+
}
|
342
|
+
|
343
|
+
.owl-carousel .owl-nav {
|
344
|
+
position: absolute;
|
345
|
+
top: 40%;
|
346
|
+
left: -50px;
|
347
|
+
right: -50px;
|
348
|
+
}
|
349
|
+
|
350
|
+
.owl-prev {
|
351
|
+
float: left;
|
352
|
+
&:before{
|
353
|
+
content: "\f060";
|
354
|
+
}
|
355
|
+
&:focus{
|
356
|
+
outline: none;
|
357
|
+
}
|
358
|
+
}
|
359
|
+
|
360
|
+
.owl-next {
|
361
|
+
float: right;
|
362
|
+
&:before{
|
363
|
+
content: "\f061";
|
364
|
+
}
|
365
|
+
&:focus{
|
366
|
+
outline: none;
|
367
|
+
}
|
368
|
+
}
|