Save
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<?
|
||||
error_reporting( E_ALL ^ E_NOTICE ^ E_STRICT );
|
||||
error_reporting( 0 );
|
||||
// error_reporting( E_ALL ^ E_NOTICE ^ E_STRICT );
|
||||
function __autoload_my_classes( $classname )
|
||||
{
|
||||
$q = explode( '\\' , $classname );
|
||||
|
||||
@@ -1,32 +1,31 @@
|
||||
$(function () {
|
||||
if ($(".illustration_product_slider").length) {
|
||||
var swiperProductSlider = new Swiper(".illustration_product_slider", {
|
||||
if ($('.illustration_product_slider').length) {
|
||||
var swiperProductSlider = new Swiper('.illustration_product_slider', {
|
||||
pagination: {
|
||||
el: ".swiper-pagination",
|
||||
type: "progressbar",
|
||||
el: '.swiper-pagination',
|
||||
type: 'progressbar',
|
||||
},
|
||||
navigation: {
|
||||
nextEl: ".swiper-slide-next",
|
||||
prevEl: ".swiper-slide-prev",
|
||||
nextEl: '.swiper-slide-next',
|
||||
prevEl: '.swiper-slide-prev',
|
||||
},
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$(function () {
|
||||
$("#nav_tabs li").first().addClass("active")
|
||||
var productList = $("#product-preview-box .scontainer-content")
|
||||
$(".product-preview", productList).first().addClass("active")
|
||||
$('#nav_tabs li').first().addClass('active')
|
||||
var productList = $('#product-preview-box .scontainer-content')
|
||||
$('.product-preview', productList).first().addClass('active')
|
||||
activateProductColors()
|
||||
activateProductDrafts()
|
||||
activateProductBanner()
|
||||
|
||||
|
||||
$("#nav_tabs li a").on("click", function (event) {
|
||||
$('#nav_tabs li a').on('click', function (event) {
|
||||
event.preventDefault()
|
||||
var boxHref = $(this).attr("href").substring(1)
|
||||
$(this).parent().parent().find("li").removeClass("active")
|
||||
$(this).parent().addClass("active")
|
||||
var boxHref = $(this).attr('href').substring(1)
|
||||
$(this).parent().parent().find('li').removeClass('active')
|
||||
$(this).parent().addClass('active')
|
||||
|
||||
activateProductBox(boxHref)
|
||||
activateProductColors(boxHref)
|
||||
@@ -35,55 +34,81 @@ $(function () {
|
||||
})
|
||||
|
||||
function activateProductBox(boxHref) {
|
||||
$(".product-preview", productList).removeClass("active")
|
||||
$(productList).find(`#${boxHref}`).addClass("active")
|
||||
$('.product-preview', productList).removeClass('active')
|
||||
$(productList).find(`#${boxHref}`).addClass('active')
|
||||
}
|
||||
|
||||
function activateProductColors(boxHref = "") {
|
||||
if (boxHref === "") {
|
||||
$("#product-colors-box .product-colors").first().addClass("active")
|
||||
} else if ($("#product-colors-box .product-colors").length > 1) {
|
||||
$("#product-colors-box .product-colors").removeClass("active")
|
||||
$("#product-colors-box .product-colors").each(function () {
|
||||
if ($(this).attr("model") === boxHref) {
|
||||
$(this).addClass("active")
|
||||
function activateProductColors(boxHref = '') {
|
||||
if (boxHref === '') {
|
||||
$('#product-colors-box .product-colors').first().addClass('active')
|
||||
} else if ($('#product-colors-box .product-colors').length > 1) {
|
||||
$('#product-colors-box .product-colors').removeClass('active')
|
||||
$('#product-colors-box .product-colors').each(function () {
|
||||
if ($(this).attr('model') === boxHref) {
|
||||
$(this).addClass('active')
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
function activateProductDrafts(boxHref = "") {
|
||||
if (boxHref === "") {
|
||||
$("#product-drafts-box .product-drafts").first().addClass("active")
|
||||
} else if ($("#product-drafts-box .product-drafts").length > 1) {
|
||||
$("#product-drafts-box .product-drafts").removeClass("active")
|
||||
$("#product-drafts-box .product-drafts").each(function () {
|
||||
if ($(this).attr("model") === boxHref) {
|
||||
$(this).addClass("active")
|
||||
function activateProductDrafts(boxHref = '') {
|
||||
if (boxHref === '') {
|
||||
$('#product-drafts-box .product-drafts').first().addClass('active')
|
||||
} else if ($('#product-drafts-box .product-drafts').length > 1) {
|
||||
$('#product-drafts-box .product-drafts').removeClass('active')
|
||||
$('#product-drafts-box .product-drafts').each(function () {
|
||||
if ($(this).attr('model') === boxHref) {
|
||||
$(this).addClass('active')
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
function activateProductBanner(boxHref = "") {
|
||||
if (boxHref === "") {
|
||||
$("#product-banners-box .product-banner").first().addClass("active")
|
||||
} else if ($("#product-banners-box .product-banner").length > 1) {
|
||||
$("#product-banners-box .product-banner").removeClass("active")
|
||||
$("#product-banners-box .product-banner").each(function () {
|
||||
if ($(this).attr("model") === boxHref) {
|
||||
$(this).addClass("active")
|
||||
function activateProductBanner(boxHref = '') {
|
||||
if (boxHref === '') {
|
||||
$('#product-banners-box .product-banner').first().addClass('active')
|
||||
} else if ($('#product-banners-box .product-banner').length > 1) {
|
||||
$('#product-banners-box .product-banner').removeClass('active')
|
||||
$('#product-banners-box .product-banner').each(function () {
|
||||
if ($(this).attr('model') === boxHref) {
|
||||
$(this).addClass('active')
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
$(function() {
|
||||
var productColorsList = $("#product-colors-preview-box .scontainer-content")
|
||||
|
||||
$("#nav_tabs_colors li a").on("click", function (e) {
|
||||
e.preventDefault()
|
||||
|
||||
var boxColorHref = $(this).attr("href").substring(1)
|
||||
$(this).parent().parent().find("li").removeClass("active")
|
||||
$(this).parent().addClass("active")
|
||||
|
||||
activateProductColorsBox(boxColorHref)
|
||||
})
|
||||
|
||||
$("#nav_tabs_colors li").first().addClass("active")
|
||||
$(".colors-preview", productColorsList).first().addClass("active")
|
||||
|
||||
function activateProductColorsBox(boxColorHref) {
|
||||
$(".colors-preview", productColorsList).removeClass("active")
|
||||
$(productColorsList).find(`#${boxColorHref}`).addClass("active")
|
||||
}
|
||||
})
|
||||
|
||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
$('#product-colors-box img').each(function () {
|
||||
var img = $(this);
|
||||
var src = img.attr('data-src');
|
||||
img.wrap('<a href="' + src + '" data-fancybox></a>');
|
||||
});
|
||||
var img = $(this)
|
||||
var src = img.attr('data-src')
|
||||
img.wrap('<a href="' + src + '" data-fancybox></a>')
|
||||
})
|
||||
|
||||
Fancybox.bind("[data-fancybox]", {
|
||||
});
|
||||
});
|
||||
Fancybox.bind('[data-fancybox]', {})
|
||||
})
|
||||
|
||||
1
layout/style-css/porte.css
Normal file
1
layout/style-css/porte.css
Normal file
@@ -0,0 +1 @@
|
||||
@import"https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap";@import"https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap";.banner-mini{margin-bottom:120px}#scontainer-61 .product-preview .row:nth-child(1){margin-bottom:60px}#scontainer-61 .product-preview .row:nth-child(2){align-items:center}#scontainer-61 .product-preview p{font-size:14px;font-weight:300;text-align:center}#scontainer-61 .product-preview table{width:100%;margin-bottom:15px}#scontainer-61 .product-preview table thead tr th{font-family:Alegreya Sans;font-size:16px;font-style:normal;font-weight:300;line-height:24px;letter-spacing:0em;text-align:center;color:#fff;background:#000;text-transform:uppercase;padding:8px 15px}#scontainer-61 .product-preview table thead tr th:empty{visibility:hidden}#scontainer-61 .product-preview table thead tr th:blank{visibility:hidden}#scontainer-61 .product-preview table thead tr th:first-child{visibility:hidden}@media(max-width: 575px){#scontainer-61 .product-preview table thead tr th{padding:8px 5px}}#scontainer-61 .product-preview table tbody{border:1px solid #000;padding-left:20px}#scontainer-61 .product-preview table tbody tr:first-child td{padding-top:100px}@media(min-width: 768px)and (max-width: 991px){#scontainer-61 .product-preview table tbody tr:first-child td{padding-top:50px}}@media(max-width: 767px){#scontainer-61 .product-preview table tbody tr:first-child td{padding-top:50px}}#scontainer-61 .product-preview table tbody tr:last-child td{padding-bottom:100px}@media(min-width: 768px)and (max-width: 991px){#scontainer-61 .product-preview table tbody tr:last-child td{padding-bottom:50px}}@media(max-width: 767px){#scontainer-61 .product-preview table tbody tr:last-child td{padding-bottom:50px}}#scontainer-61 .product-preview table tbody tr td{padding:10px 20px;font-size:14px;font-weight:500;text-align:center}@media(max-width: 575px){#scontainer-61 .product-preview table tbody tr td{padding:10px 10px}}#scontainer-61 .product-preview table tbody tr td:first-child{text-align:left}#scontainer-61 .product-preview table tbody tr td img{width:20px;height:20px}/*# sourceMappingURL=porte.css.map */
|
||||
1
layout/style-css/porte.css.map
Normal file
1
layout/style-css/porte.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../style-scss/_variables.scss","../style-scss/porte.scss","../style-scss/_mixins.scss"],"names":[],"mappings":"AAAQ,oFAAA,CACA,2FAAA,CCER,aACC,mBAAA,CAME,kDACC,kBAAA,CAED,kDACC,kBAAA,CAGF,kCACC,cAAA,CACA,eAAA,CACA,iBAAA,CAGD,sCACC,UAAA,CACA,kBAAA,CAIE,kDACC,yBAAA,CACA,cAAA,CACA,iBAAA,CACA,eAAA,CACA,gBAAA,CACA,kBAAA,CACA,iBAAA,CACA,UAAA,CACA,eAAA,CACA,wBAAA,CACA,gBAAA,CAEA,wDACC,iBAAA,CAGD,wDACC,iBAAA,CAGD,8DACC,iBAAA,CChCH,yBDUC,kDA0BE,eAAA,CAAA,CAMJ,4CACC,qBAAA,CACA,iBAAA,CAIE,8DACC,iBAAA,CCtCH,+CDqCE,8DAIE,gBAAA,CAAA,CCpDJ,yBDgDE,8DAQE,gBAAA,CAAA,CAMF,6DACC,oBAAA,CCpDH,+CDmDE,6DAIE,mBAAA,CAAA,CClEJ,yBD8DE,6DAQE,mBAAA,CAAA,CAKH,kDACC,iBAAA,CACA,cAAA,CACA,eAAA,CAMA,iBAAA,CCpFF,yBD2EC,kDAME,iBAAA,CAAA,CAKD,8DACC,eAAA,CAGD,sDACC,UAAA,CACA,WAAA","file":"porte.css"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -15,3 +15,13 @@ $cGrayBg: #f2f2f2;
|
||||
$cGrayDarkBg: #777676;
|
||||
$cGrayBorder: #ccc;
|
||||
$cBlackText: #212529;
|
||||
|
||||
$cBlack: #000;
|
||||
$cWhite: #fff;
|
||||
$cLightBlue: #4ca8e6;
|
||||
$cDarkNight: #343431;
|
||||
$cDeepDark: #1d1d1b;
|
||||
|
||||
$cTxtCloud: #d8d8d8;
|
||||
$cTxtLightBlue: #4ca8e6;
|
||||
$cTxtDark: #2c2d2f;
|
||||
|
||||
119
layout/style-scss/porte.scss
Normal file
119
layout/style-scss/porte.scss
Normal file
@@ -0,0 +1,119 @@
|
||||
@import '_mixins';
|
||||
@import '_variables';
|
||||
|
||||
.banner-mini {
|
||||
margin-bottom: 120px;
|
||||
}
|
||||
|
||||
#scontainer-61 {
|
||||
.product-preview {
|
||||
.row {
|
||||
&:nth-child(1) {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
p {
|
||||
font-size: 14px;
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
|
||||
thead {
|
||||
tr {
|
||||
th {
|
||||
font-family: Alegreya Sans;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
line-height: 24px;
|
||||
letter-spacing: 0em;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #000;
|
||||
text-transform: uppercase;
|
||||
padding: 8px 15px;
|
||||
|
||||
&:empty {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
&:blank {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
@include respond-below(xs) {
|
||||
padding: 8px 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
border: 1px solid #000;
|
||||
padding-left: 20px;
|
||||
|
||||
tr {
|
||||
&:first-child {
|
||||
td {
|
||||
padding-top: 100px;
|
||||
|
||||
@include respond-between(sm, md) {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
@include respond-below(sm) {
|
||||
padding-top: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
td {
|
||||
padding-bottom: 100px;
|
||||
|
||||
@include respond-between(sm, md) {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
@include respond-below(sm) {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
|
||||
@include respond-below(xs) {
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
text-align: center;
|
||||
|
||||
&:first-child {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7458,3 +7458,451 @@ a {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
#nav_tabs {
|
||||
max-width: 980px;
|
||||
// padding-bottom: 120px;
|
||||
margin-bottom: 90px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
// &::before {
|
||||
// content: '';
|
||||
// position: absolute;
|
||||
// bottom: 0;
|
||||
// left: 0;
|
||||
// height: 1px;
|
||||
// width: 100vw;
|
||||
// background-color: $cBlack;
|
||||
// }
|
||||
}
|
||||
|
||||
#nav_tabs,
|
||||
#nav_tabs_colors {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 17px;
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
// width: fit-content;
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
min-width: fit-content;
|
||||
width: 200px;
|
||||
border: 1px solid $cBlack;
|
||||
background: $cWhite;
|
||||
transition: background 250ms ease;
|
||||
|
||||
&.new {
|
||||
&::before {
|
||||
content: url('/upload/filemanager/Icons/new-icon.png');
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
right: -15px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: $cBlack;
|
||||
|
||||
a {
|
||||
color: $cTxtWhite;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
row-gap: 3px;
|
||||
|
||||
color: $cTxtBlack;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
margin-bottom: 0;
|
||||
|
||||
padding: 12px 20px;
|
||||
cursor: pointer;
|
||||
transition: color 250ms ease;
|
||||
|
||||
u {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
font-weight: 400;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 0;
|
||||
letter-spacing: 0.05em;
|
||||
text-decoration: none;
|
||||
|
||||
span {
|
||||
margin-top: -4px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#product-preview-box {
|
||||
margin-bottom: 100px;
|
||||
|
||||
.product-preview-box {
|
||||
.scontainer-content {
|
||||
// padding-left: 250px;
|
||||
|
||||
.product-preview {
|
||||
display: none;
|
||||
// padding-left: 250px;
|
||||
|
||||
&.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.product_info_img {
|
||||
padding-top: 15px;
|
||||
|
||||
.product-emblem {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
transform: translateX(-95%);
|
||||
z-index: 3;
|
||||
|
||||
width: 240px;
|
||||
height: 240px;
|
||||
text-align: center;
|
||||
padding: 15px;
|
||||
background: $cWhite;
|
||||
border: 5px solid #d8d8d8;
|
||||
border-radius: 100%;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -10px;
|
||||
border: 5px solid #e6e6e6;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -15px;
|
||||
border: 5px solid #f4f4f4;
|
||||
border-radius: 100%;
|
||||
box-shadow: 0 0 0px 5px #fbfbfb;
|
||||
}
|
||||
|
||||
img {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 300;
|
||||
font-size: 18px;
|
||||
line-height: 20px;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0;
|
||||
|
||||
strong {
|
||||
display: block;
|
||||
position: relative;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: $cTxtLightBlue;
|
||||
margin-bottom: 14px;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -6px;
|
||||
left: 50%;
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
max-width: 110px;
|
||||
background: $cLightBlue;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-below(md) {
|
||||
transform: translateX(0);
|
||||
left: 15px;
|
||||
}
|
||||
|
||||
@include respond-below(xs) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.illustration_product_slider {
|
||||
.swiper-wrapper {
|
||||
.swiper-slide {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-navigation {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 60px;
|
||||
|
||||
.swiper-button-disabled {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.swiper-slide-next {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
transition: opacity 250ms ease-in;
|
||||
|
||||
img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-slide-prev {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
transition: opacity 250ms ease-in;
|
||||
|
||||
img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-below(md) {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.product_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
||||
h3 {
|
||||
font-weight: 700;
|
||||
font-size: 35px;
|
||||
line-height: 37px;
|
||||
letter-spacing: 0.15em;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
ul {
|
||||
border: 1px solid #f4f4f4;
|
||||
padding: 15px 20px;
|
||||
|
||||
/* width */
|
||||
&::-webkit-scrollbar {
|
||||
width: 3px;
|
||||
}
|
||||
|
||||
/* Handle */
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background: #dadada;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
/* Track */
|
||||
&::-webkit-scrollbar-track {
|
||||
box-shadow: inset 0 0 5px rgba(grey, 0.1);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
/* Handle on hover */
|
||||
&::-webkit-scrollbar-thumb:hover {
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
li {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 300;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
align-items: center;
|
||||
column-gap: 55px;
|
||||
row-gap: 15px;
|
||||
padding-top: 45px;
|
||||
padding-left: 20px;
|
||||
|
||||
.btn8 {
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: fit-content;
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-below(sm) {
|
||||
text-align: center;
|
||||
|
||||
.btn8 {
|
||||
margin-top: 40px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-below(md) {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-below(md) {
|
||||
margin-bottom: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
#product-colors-preview-box {
|
||||
margin-bottom: 70px;
|
||||
|
||||
.scontainer-content {
|
||||
.colors-box-header {
|
||||
margin-bottom: 50px;
|
||||
|
||||
h2 {
|
||||
font-size: 30px;
|
||||
font-weight: 300;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0.15em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.c-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
column-gap: 40px;
|
||||
justify-content: center;
|
||||
|
||||
.c-col {
|
||||
&-2 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.colors-preview {
|
||||
display: none;
|
||||
|
||||
&.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.color-tiles-rows {
|
||||
.color-tiles {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.color-tiles-title {
|
||||
margin-bottom: 30px;
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
.color-tiles-data {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
column-gap: 23px;
|
||||
row-gap: 15px;
|
||||
align-items: flex-start;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
flex-wrap: wrap;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
flex: 0 0 97px;
|
||||
|
||||
@include respond-below(md) {
|
||||
&.empty {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@include respond-below(sm) {
|
||||
flex: 0 0 100%;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
{"version":3,"sources":["../classic/_single.scss","../classic/_defaults.scss","../../mixins/_gradients.scss","../classic/_multiple.scss","../classic/layout.scss"],"names":[],"mappings":"AAAA,uDACE,wBAAA,CAEA,qBAAA,CACA,iBCGc,CDDd,SAAA,CEGE,oEAAA,CACA,0BAAA,CACA,+GAAA,CFDF,6DACE,wBAAA,CAGF,oFACE,UAAA,CACA,gBAAA,CAGF,iFACE,cAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CAGF,uFACE,UAAA,CAGF,iFACE,qBAAA,CAEA,WAAA,CACA,0BAAA,CACA,2BC5BY,CD6BZ,8BC7BY,CD+BZ,WAAA,CAEA,iBAAA,CAEA,OAAA,CACA,SAAA,CAEA,UAAA,CEpCA,sEAAA,CACA,0BAAA,CACA,iHAAA,CFsCA,mFACE,2DAAA,CACA,kBAAA,CACA,0BAAA,CAEA,QAAA,CACA,QAAA,CAEA,gBAAA,CACA,eAAA,CAEA,iBAAA,CAEA,OAAA,CACA,OAAA,CAOF,0FACE,UAAA,CAGF,0FACE,WAAA,CACA,2BAAA,CAEA,eAAA,CACA,0BCxEU,CDyEV,6BCzEU,CD2EV,QAAA,CACA,UAAA,CAMJ,+EACE,wBAAA,CAEA,yGACE,wBAAA,CAEA,WAAA,CAEA,2GACE,2DAAA,CACA,0BAAA,CAMJ,wGACE,eAAA,CACA,wBAAA,CACA,yBAAA,CEnGF,kEAAA,CACA,0BAAA,CACA,+GAAA,CFwGA,wGACE,kBAAA,CACA,2BAAA,CACA,4BAAA,CE7GF,oEAAA,CACA,0BAAA,CACA,+GAAA,CCXJ,yDACE,qBAAA,CAEA,qBAAA,CACA,iBFGc,CEDd,WAAA,CAEA,SAAA,CAEA,+DACE,wBAAA,CAGF,sFACE,eAAA,CACA,QAAA,CACA,aAAA,CAGF,mFACE,YAAA,CAGF,oFACE,wBAAA,CAEA,qBAAA,CACA,iBFrBY,CEuBZ,cAAA,CAEA,UAAA,CAEA,gBAAA,CACA,cAAA,CACA,aAAA,CAGF,4FACE,UFxCW,CEyCX,cAAA,CAEA,oBAAA,CACA,gBAAA,CAEA,gBAAA,CAEA,kGACE,UFhDe,CEuDjB,6FACE,WAAA,CAGF,6FACE,eAAA,CACA,iBAAA,CAGF,qGACE,eAAA,CACA,iBAAA,CAMJ,iFACE,wBAAA,CAIA,0GACE,eAAA,CACA,wBAAA,CACA,yBAAA,CAKF,0GACE,kBAAA,CACA,2BAAA,CACA,4BAAA,CCjFF,6EACE,qBAAA,CACA,SAAA,CAKF,2EACE,SAAA,CAIJ,8CACE,qBHRqB,CGSrB,8BAAA,CAGF,qDACE,kBAAA,CAGF,qDACE,eAAA,CAGF,uEACE,gBHPiB,CGQjB,eAAA,CAIA,iEACE,SAAA,CAGF,yEACE,UHXiC,CGerC,iFACE,wBHnB4B,CGoB5B,UHnB4B,CGsB9B,oDACE,cAAA,CACA,aAAA,CACA,WAAA,CAGF,sEACE,oBHnDiB","file":"layout.css"}
|
||||
{"version":3,"sources":["../default/_single.scss","../default/_multiple.scss","../default/layout.scss"],"names":[],"mappings":"AAAA,uDACE,wBAAA,CACA,+BAAA,CACA,iBAAA,CAEA,6DACE,SAAA,CAGF,oFACE,UAAA,CACA,gBAAA,CAGF,iFACE,cAAA,CACA,WAAA,CACA,gBAAA,CAGF,uFACE,UAAA,CAGF,iFACE,WAAA,CAEA,iBAAA,CAEA,OAAA,CACA,SAAA,CAEA,UAAA,CAEA,mFACE,2DAAA,CACA,kBAAA,CACA,0BAAA,CAEA,QAAA,CACA,QAAA,CAEA,gBAAA,CACA,eAAA,CAEA,iBAAA,CAEA,OAAA,CACA,OAAA,CAOF,0FACE,UAAA,CAGF,0FACE,QAAA,CACA,UAAA,CAMJ,mFACE,qBAAA,CACA,cAAA,CAEA,6GACE,YAAA,CAQA,2GACE,2DAAA,CACA,0BAAA,CClFR,yDACE,wBAAA,CACA,+BAAA,CACA,iBAAA,CACA,WAAA,CAEA,sFACE,qBAAA,CACA,eAAA,CACA,QAAA,CACA,aAAA,CACA,UAAA,CAGF,yFACE,UAAA,CAEA,cAAA,CAEA,UAAA,CAGF,mFACE,cAAA,CACA,WAAA,CACA,gBAAA,CACA,cAAA,CACA,iBAAA,CAGF,oFACE,UAAA,CACA,qBAAA,CAEA,qBAAA,CACA,iBAAA,CACA,cAAA,CAEA,UAAA,CAEA,gBAAA,CACA,cAAA,CACA,mBAAA,CAGF,4FACE,UAAA,CACA,cAAA,CAEA,oBAAA,CACA,gBAAA,CAEA,gBAAA,CAEA,kGACE,UAAA,CAOF,+LACE,WAAA,CAGF,6FACE,eAAA,CACA,iBAAA,CAGF,qGACE,eAAA,CACA,iBAAA,CAMJ,kFACE,qBAAA,CACA,SAAA,CAKF,qFACE,qBAAA,CACA,cAAA,CAGF,2FACE,YAAA,CCvFA,kNACE,wBAAA,CACA,yBAAA,CAKF,kNACE,2BAAA,CACA,4BAAA,CAKF,6EACE,qBAAA,CACA,mFACE,SAAA,CAMJ,2EACE,wBAAA,CACA,WAAA,CACA,SAAA,CAIJ,uEACE,gBAAA,CACA,eAAA,CAIA,iEACE,SAAA,CAGF,yEACE,UAAA,CAGF,yEACE,qBAAA,CAGF,8EACE,gBAAA,CAEA,sGACE,cAAA,CAGF,uGACE,gBAAA,CACA,gBAAA,CAEA,gIACE,gBAAA,CACA,gBAAA,CAEA,yJACE,gBAAA,CACA,gBAAA,CAEA,kLACE,gBAAA,CACA,gBAAA,CAEA,2MACE,gBAAA,CACA,gBAAA,CASd,iFACE,wBAAA,CACA,UAAA,CAGF,oDACE,cAAA,CACA,aAAA,CACA,WAAA","file":"layout.css"}eAAA,CAGF,uEACE,gBHPiB,CGQjB,eAAA,CAIA,iEACE,SAAA,CAGF,yEACE,UHXiC,CGerC,iFACE,wBHnB4B,CGoB5B,UHnB4B,CGsB9B,oDACE,cAAA,CACA,aAAA,CACA,WAAA,CAGF,sEACE,oBHnDiB","file":"layout.css"}
|
||||
Reference in New Issue
Block a user