Initial commit
This commit is contained in:
244
client/scss/plugins/_lightbox.scss
Normal file
244
client/scss/plugins/_lightbox.scss
Normal file
@@ -0,0 +1,244 @@
|
||||
/* Lightbox v2.10.0 Copyright 2007, 2018 Lokesh Dhakar Released under the MIT license */
|
||||
|
||||
.lb-loader, .lightbox {
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.lb-dataContainer:after, .lb-outerContainer:after {
|
||||
content: "";
|
||||
clear: both;
|
||||
}
|
||||
|
||||
html.lb-disable-scrolling {
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
}
|
||||
|
||||
.lightboxOverlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0 !important;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
height: 100% !important;
|
||||
width: 100% !important;
|
||||
background-color: #000;
|
||||
filter: alpha(Opacity = 80);
|
||||
opacity: 1;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.lightbox {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
top: 50% !important;
|
||||
transform: translateY(-50%);
|
||||
width: 100%;
|
||||
z-index: 10000;
|
||||
font-weight: 400;
|
||||
|
||||
.lb-image {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-width: inherit;
|
||||
max-height: none;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.lb-outerContainer {
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
margin: 0 auto;
|
||||
border-radius: 4px;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
|
||||
&:after {
|
||||
display: table;
|
||||
}
|
||||
}
|
||||
|
||||
.lb-loader {
|
||||
top: 50%;
|
||||
height: 25%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.lb-cancel {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
background: url(../images/loading.gif) no-repeat;
|
||||
}
|
||||
|
||||
.lb-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.lb-container > .nav {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.lb-nav a {
|
||||
outline: 0;
|
||||
background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
|
||||
}
|
||||
|
||||
.lb-next, .lb-prev {
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lb-nav a {
|
||||
&.lb-prev {
|
||||
width: 34%;
|
||||
left: 0;
|
||||
float: left;
|
||||
background: url(../images/prev.png) left 48% no-repeat;
|
||||
filter: alpha(Opacity = 0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity .6s;
|
||||
-moz-transition: opacity .6s;
|
||||
-o-transition: opacity .6s;
|
||||
transition: opacity .6s;
|
||||
|
||||
&:hover {
|
||||
filter: alpha(Opacity = 100);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&.lb-next {
|
||||
width: 64%;
|
||||
right: 0;
|
||||
float: right;
|
||||
background: url(../images/next.png) right 48% no-repeat;
|
||||
filter: alpha(Opacity = 0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity .6s;
|
||||
-moz-transition: opacity .6s;
|
||||
-o-transition: opacity .6s;
|
||||
transition: opacity .6s;
|
||||
|
||||
&:hover {
|
||||
filter: alpha(Opacity = 100);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.lb-dataContainer {
|
||||
margin: 0 auto;
|
||||
padding-top: 5px;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
|
||||
&:after {
|
||||
display: table;
|
||||
}
|
||||
}
|
||||
|
||||
.lb-data {
|
||||
padding: 0 4px;
|
||||
color: #ccc;
|
||||
|
||||
.lb-details {
|
||||
width: 85%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.lb-caption a {
|
||||
color: #4ae;
|
||||
}
|
||||
|
||||
.lb-number {
|
||||
display: block;
|
||||
clear: left;
|
||||
padding-bottom: 1em;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.lb-close {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url(../images/close.png) top right no-repeat;
|
||||
text-align: right;
|
||||
outline: 0;
|
||||
filter: alpha(Opacity = 70);
|
||||
opacity: .7;
|
||||
-webkit-transition: opacity .2s;
|
||||
-moz-transition: opacity .2s;
|
||||
-o-transition: opacity .2s;
|
||||
transition: opacity .2s;
|
||||
}
|
||||
}
|
||||
|
||||
.lb-dataContainer, .lb-details {
|
||||
width: 100% !important;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.lb-data .lb-close:hover {
|
||||
cursor: pointer;
|
||||
filter: alpha(Opacity = 100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.lb-outerContainer {
|
||||
position: fixed !important;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%) !important;
|
||||
}
|
||||
|
||||
.lb-dataContainer {
|
||||
bottom: -50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.lb-closeContainer {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
bottom: -50%;
|
||||
padding-bottom: 70px;
|
||||
transform: scale(0.8, 0.8);
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.lb-details {
|
||||
padding-top: 30px;
|
||||
top: -50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.lb-data .lb-caption {
|
||||
font-weight: 700;
|
||||
line-height: 1em;
|
||||
font-size: 16px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
334
client/scss/plugins/_owl-carousel.scss
Normal file
334
client/scss/plugins/_owl-carousel.scss
Normal file
@@ -0,0 +1,334 @@
|
||||
/* Owl Carousel v2.2.1 Copyright 2013-2017 David Deutsch Licensed under ()*/
|
||||
@keyframes "fadeOut" {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.owl-carousel {
|
||||
.owl-item {
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
-ms-backface-visibility: hidden;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
-moz-transform: translate3d(0,0,0);
|
||||
-ms-transform: translate3d(0,0,0);
|
||||
min-height: 1px;
|
||||
float: left;
|
||||
-webkit-backface-visibility: hidden;
|
||||
-webkit-touch-callout: none;
|
||||
img {
|
||||
display: block;
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
.owl-lazy {
|
||||
opacity: 0;
|
||||
transition: opacity .4s ease;
|
||||
}
|
||||
img.owl-lazy {
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
}
|
||||
.owl-wrapper {
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
-ms-backface-visibility: hidden;
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
-moz-transform: translate3d(0,0,0);
|
||||
-ms-transform: translate3d(0,0,0);
|
||||
}
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
position: relative;
|
||||
display: none;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
.owl-stage {
|
||||
position: relative;
|
||||
-ms-touch-action: pan-Y;
|
||||
-moz-backface-visibility: hidden;
|
||||
&:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
}
|
||||
}
|
||||
.owl-stage-outer {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
}
|
||||
.owl-dots.disabled {
|
||||
display: none;
|
||||
}
|
||||
.owl-nav.disabled {
|
||||
display: none;
|
||||
}
|
||||
.owl-dot {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.owl-nav {
|
||||
.owl-next {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.owl-prev {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
}
|
||||
.animated {
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
.owl-animated-in {
|
||||
z-index: 0;
|
||||
}
|
||||
.owl-animated-out {
|
||||
z-index: 1;
|
||||
}
|
||||
.fadeOut {
|
||||
animation-name: fadeOut;
|
||||
}
|
||||
.owl-video-wrapper {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
background: #000;
|
||||
}
|
||||
.owl-video-play-icon {
|
||||
position: absolute;
|
||||
height: 80px;
|
||||
width: 80px;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -40px;
|
||||
margin-top: -40px;
|
||||
background: url(owl.video.play.png) no-repeat;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
-webkit-backface-visibility: hidden;
|
||||
transition: transform .1s ease;
|
||||
&:hover {
|
||||
-ms-transform: scale(1.3,1.3);
|
||||
transform: scale(1.3,1.3);
|
||||
}
|
||||
}
|
||||
.owl-video-playing {
|
||||
.owl-video-play-icon {
|
||||
display: none;
|
||||
}
|
||||
.owl-video-tn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.owl-video-tn {
|
||||
opacity: 0;
|
||||
height: 100%;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
transition: opacity .4s ease;
|
||||
}
|
||||
.owl-video-frame {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.card {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
}
|
||||
.owl-dots {
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
-ms-backface-visibility: hidden;
|
||||
text-align: center;
|
||||
bottom: 5px;
|
||||
width: 100%;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.no-js {
|
||||
.owl-carousel {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.owl-carousel.owl-loaded {
|
||||
display: block;
|
||||
}
|
||||
.owl-carousel.owl-loading {
|
||||
opacity: 0;
|
||||
display: block;
|
||||
}
|
||||
.owl-carousel.owl-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
.owl-carousel.owl-refresh {
|
||||
.owl-item {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.owl-carousel.owl-drag {
|
||||
.owl-item {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
}
|
||||
.owl-carousel.owl-grab {
|
||||
cursor: move;
|
||||
cursor: grab;
|
||||
}
|
||||
.owl-carousel.owl-rtl {
|
||||
direction: rtl;
|
||||
.owl-item {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.owl-height {
|
||||
transition: all 250ms ease !important;
|
||||
min-height: 500px;
|
||||
height: auto !important;
|
||||
height: 500px;
|
||||
}
|
||||
.owl-auto-height {
|
||||
.owl-height {
|
||||
transition: all 250ms ease-in-out !important;
|
||||
}
|
||||
}
|
||||
.owl-dot {
|
||||
transition: all 250ms ease;
|
||||
border-radius: 50px;
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
display: inline-block;
|
||||
background: rgba(139,139,139,.9);
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.owl-dot.active {
|
||||
transition: all 250ms ease;
|
||||
background: #cacaca;
|
||||
}
|
||||
.owl-no-dots {
|
||||
.owl-dots {
|
||||
display: none !important;
|
||||
}
|
||||
.cover-content-bottom {
|
||||
bottom: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
.content1-full-height {
|
||||
.owl-dot {
|
||||
bottom: 20px !important;
|
||||
}
|
||||
}
|
||||
.owl-nav {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 10;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.owl-next {
|
||||
width: 40px;
|
||||
height: 50px;
|
||||
position: absolute;
|
||||
color: $color_white;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin-top: -25px;
|
||||
right: 0;
|
||||
}
|
||||
.owl-prev {
|
||||
width: 40px;
|
||||
height: 50px;
|
||||
position: absolute;
|
||||
color: $color_white;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin-top: -25px;
|
||||
left: 0;
|
||||
}
|
||||
.owl-has-dots {
|
||||
.owl-dots {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.owl-has-dots-over {
|
||||
.owl-dots {
|
||||
margin-top: -40px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
.cover-slider {
|
||||
margin-bottom: 0;
|
||||
.owl-dots {
|
||||
z-index: 99;
|
||||
margin-top: -27px;
|
||||
transform: translateY(-20px)!important;
|
||||
}
|
||||
[data-height=cover] {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
}
|
||||
.next-slide {
|
||||
color: $color_white;
|
||||
width: 35px;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
margin-top: -10px;
|
||||
top: 50%;
|
||||
transform: translateY(-70%);
|
||||
z-index: 99;
|
||||
right: 15px;
|
||||
}
|
||||
.prev-slide {
|
||||
color: $color_white;
|
||||
width: 35px;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
margin-top: -10px;
|
||||
top: 50%;
|
||||
transform: translateY(-70%);
|
||||
z-index: 99;
|
||||
left: 15px;
|
||||
}
|
||||
.owl-dots-over {
|
||||
.owl-dots {
|
||||
transform: translateY(-60px);
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
}
|
||||
.owl-dots-no-footer .owl-dots{
|
||||
transform: translateY(-18px)!important;
|
||||
}
|
||||
Reference in New Issue
Block a user