[ADD] theme 14.0

This commit is contained in:
Jeremy Kersten
2021-05-10 15:45:35 +02:00
commit cb1e3be3f8
2309 changed files with 55585 additions and 0 deletions
@@ -0,0 +1,53 @@
$s-banner-parallax-height: 100vh;
$s-banner-parallax-padding: 0px;
$s-banner-parallax-img-height: 350px;
$s-banner-parallax-text-shadow: none;
$s-banner-parallax-text-color: auto;
$s-banner-parallax-bg-position: none !important;
$s-banner-parallax-h1-size: 50px;
@mixin s-banner-parallax-hero-bg-hook {
width: 100%;
text-align: center;
position: relative;
z-index: 10;
};
@mixin s-banner-parallax-row-hook {
vertical-align: top;
padding: 0;
.hero-bg:before {
content: "";
width: 0px;
height: 0px;
border-top: 80vh solid rgba(0, 0, 0, 0);
border-bottom: 0px solid rgba(0, 0, 0, 0);
border-left: 50vw solid o-color('gamma');
position: absolute;
bottom: -85vh;
left: -2px;
opacity: 0.8;
@include media-breakpoint-down(sm) {
display: none;
}
}
.hero-bg:after {
content: "";
width: 0px;
height: 0px;
border-top: 80vh solid rgba(0, 0, 0, 0);
border-bottom: 0px solid rgba(0, 0, 0, 0);
border-right: 50vw solid o-color('gamma');
position: absolute;
bottom: -85vh;
right: -2px;
opacity: 0.8;
@include media-breakpoint-down(sm) {
display: none;
}
}
};
@mixin s-banner-parallax-height-hook {
@include media-breakpoint-down(md) {
height: 100vh !important;
}
};
@@ -0,0 +1,13 @@
$s-features-carousel-border-width: 0;
$s-features-carousel-indicators-visible: visible;
@mixin s-features-carousel-inner-hook {
.carousel-inner .row {
margin: 40px 70px;
@include media-breakpoint-down(sm) {
margin: 0;
}
}
}
@mixin s-features-carousel-mask-hook {
border: 1px solid gray('200');
}
@@ -0,0 +1,4 @@
$s-products-carousel-carousel-height: 100vh;
$s-products-carousel-indicators-position: 120px;
$s-products-carousel-indicators-visible: visible;
$s-products-carousel-hero-bg-padding: 0;