From 07386b437dc4bbae7049cf2ca21d22afad356f20 Mon Sep 17 00:00:00 2001 From: Jacek Pyziak Date: Mon, 27 Jan 2025 22:23:21 +0100 Subject: [PATCH] =?UTF-8?q?Zaktualizowano=20identyfikatory=20producent?= =?UTF-8?q?=C3=B3w=20i=20warto=C5=9Bci=20cech=20w=20skrypcie,=20zmieniono?= =?UTF-8?q?=20rozmiar=20plik=C3=B3w=20konfiguracyjnych=20oraz=20dodano=20n?= =?UTF-8?q?owe=20ustawienia=20dla=20kompilacji=20SASS.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/ftp-kr.sync.cache.json | 4 +- .vscode/settings.json | 16 +- custom-script.php | 53 +- themes/InterBlue/assets/css/custom.css | 805 +--------------- themes/InterBlue/assets/css/custom.css.map | 2 +- themes/InterBlue/assets/css/custom.scss | 1006 ++++++++++---------- 6 files changed, 552 insertions(+), 1334 deletions(-) diff --git a/.vscode/ftp-kr.sync.cache.json b/.vscode/ftp-kr.sync.cache.json index 6f8b1052..187d78e2 100644 --- a/.vscode/ftp-kr.sync.cache.json +++ b/.vscode/ftp-kr.sync.cache.json @@ -64,7 +64,7 @@ }, "custom-script.php": { "type": "-", - "size": 1031, + "size": 1991, "lmtime": 0, "modified": true }, @@ -98,7 +98,7 @@ }, "google-merchant_id-1.xml": { "type": "-", - "size": 18352829, + "size": 18341303, "lmtime": 0, "modified": true }, diff --git a/.vscode/settings.json b/.vscode/settings.json index ed94f44b..aecc1e44 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,17 @@ { - "git.ignoreLimitWarning": true + "liveSassCompile.settings.formats": [ + { + "format": "compressed", + "extensionName": ".css", + "savePath": "", + "savePathSegmentKeys": null, + "savePathReplaceSegmentsWith": null + } + ], + "liveSassCompile.settings.generateMap": true, + "liveSassCompile.settings.autoprefix": "defaults", + "liveSassCompile.settings.watchOnLaunch": true, + "liveSassCompile.settings.includeItems": [ + "/themes/InterBlue/assets/css/custom.scss" + ] } \ No newline at end of file diff --git a/custom-script.php b/custom-script.php index 2a0a22d2..7a3a681e 100644 --- a/custom-script.php +++ b/custom-script.php @@ -6,11 +6,11 @@ require_once dirname(__FILE__) . '/config/config.inc.php'; require_once dirname(__FILE__) . '/init.php'; // ID producentów, których produkty mają zostać zaktualizowane -$manufacturerIds = [185]; +$manufacturerIds = [186]; // ID cechy oraz jej wartości do przypisania $featureId = 20; -$featureValueId = 19003; +$featureValueId = 19010; // Pobierz produkty od wybranych producentów $sql = ' @@ -21,39 +21,46 @@ $sql = ' $productIds = Db::getInstance()->executeS($sql); -if ($productIds) { - foreach ($productIds as $product) { - $productId = (int)$product['id_product']; +if ($productIds) +{ + foreach ($productIds as $product) + { + $productId = (int)$product['id_product']; - // Sprawdź, czy cecha już istnieje dla produktu - $sqlCheck = ' + // Sprawdź, czy cecha już istnieje dla produktu + $sqlCheck = ' SELECT id_feature FROM ' . _DB_PREFIX_ . 'feature_product WHERE id_product = ' . $productId . ' AND id_feature = ' . (int)$featureId . ' '; - $featureExists = Db::getInstance()->getValue($sqlCheck); + $featureExists = Db::getInstance()->getValue($sqlCheck); - if (!$featureExists) { - // Przypisz cechę do produktu - $insert = ' + if (!$featureExists) + { + // Przypisz cechę do produktu + $insert = ' INSERT INTO ' . _DB_PREFIX_ . 'feature_product (id_feature, id_product, id_feature_value) VALUES (' . (int)$featureId . ', ' . $productId . ', ' . (int)$featureValueId . ') '; - Db::getInstance()->execute($insert); + Db::getInstance()->execute($insert); - echo 'Product ID: ' . $productId . " - Feature ID: $featureId - Feature Value ID: $featureValueId\n"; - echo '
'; - echo "Dodano cechę dla produktu ID: $productId\n"; - echo '
'; - } else { - echo "Produkt ID: $productId już posiada tę cechę\n"; - echo '
'; - } + echo 'Product ID: ' . $productId . " - Feature ID: $featureId - Feature Value ID: $featureValueId\n"; + echo '
'; + echo "Dodano cechę dla produktu ID: $productId\n"; + echo '
'; } -} else { - echo "Nie znaleziono produktów dla podanych producentów.\n"; - echo '
'; + else + { + echo "Produkt ID: $productId już posiada tę cechę\n"; + echo '
'; + } + } +} +else +{ + echo "Nie znaleziono produktów dla podanych producentów.\n"; + echo '
'; } echo "Operacja zakończona.\n"; diff --git a/themes/InterBlue/assets/css/custom.css b/themes/InterBlue/assets/css/custom.css index a192fe65..94748a3f 100644 --- a/themes/InterBlue/assets/css/custom.css +++ b/themes/InterBlue/assets/css/custom.css @@ -1,804 +1 @@ -@charset "UTF-8"; -/* - * Custom code goes here. - * A template should always ship with an empty custom.css - */ -.img-fluid, -.img-thumbnail { - max-width: 100%; - height: auto; -} - -/** Sekcje **********************************************/ -section#slider { - padding-top: 25px; -} - -/** Wrapper sklepu ************************************************************************/ -#wrapper { - background-color: #ffffff; - padding-top: 25px; - padding-bottom: 50px; -} - -@media (max-width: 479.9px) { - #wrapper { - padding-top: 0px; - } -} -/** Header sklepu - kontakt ***************************************************************/ -#header .header-nav #_desktop_contact_link { - display: inline-block; - font-weight: 500; -} - -#header .header-nav #_desktop_contact_link .contact-info-phone, -#header .header-nav #_desktop_contact_link .contact-info-email, -#header .header-nav #_desktop_contact_link .contact-info-open-hours { - float: left; - margin-right: 25px; -} - -#header .header-nav #_desktop_contact_link .contact-info-phone a { - color: #f57e20; -} - -#header .header-nav #_desktop_contact_link .contact-info-phone a:hover { - color: #2fb5d2; -} - -#header .header-nav #_desktop_contact_link i { - margin-right: 4px; -} - -#header .header-nav #_desktop_contact_link #contact-link { - margin-top: 0.9375rem; -} - -/** Blok html *******************************************/ -.html-block-content { - margin-bottom: 40px; -} - -/** Drzewko kategorii ***********************************/ -.block-categories li[data-depth="0"] { - position: relative; - border-bottom: 1px solid #c4c4c4; -} - -.block-categories .category-sub-menu li[data-depth="0"] > a { - padding-top: 13px; - padding-bottom: 13px; - position: relative; - z-index: 30; - width: auto !important; - display: inline-block; - border-bottom: none; -} - -.block-categories .navbar-toggler { - width: 100%; - height: 4em; - padding: 0; - padding0-top: 13px; - padding-bottom: 0px; - margin-top: -11px; - font-size: 0.9375rem; - line-height: 1; - background: transparent no-repeat 50%; - background-size: auto; - background-size: 24px 24px; - border: 1px solid transparent; - border-radius: 0; - position: absolute; - z-index: 29; -} - -.block-categories .navbar-toggler i { - float: right; - margin-top: 11px; -} - -/** Wlasny blok tekstowy ****/ -#custom-text { - text-align: center; - background-color: #f9f9f9; - margin-bottom: 15px; -} - -.page-home #custom-text { - display: none; -} - -#custom-text .custom-text-content { - max-width: 1600px; - width: 100%; - margin-left: auto; - margin-right: auto; - color: #666666; - display: table; - padding-top: 20px; - padding-bottom: 20px; -} - -#custom-text .circle { - border-radius: 50%; - behavior: url(PIE.htc); - /* remove if you don't care about IE8 */ - width: 50px; - height: 50px; - border: 2px solid #13448f; - display: block; - margin-left: auto; - margin-right: auto; - background-repeat: no-repeat; - background-position: center center; -} - -#custom-text .circle-1 { - background-image: url(../img/co-nas-wyroznia-ik-1.png); - background-size: 35% 35%; -} - -#custom-text .circle-2 { - background-image: url(../img/co-nas-wyroznia-ik-2.png); - background-size: 35% 35%; -} - -#custom-text .circle-3 { - background-image: url(../img/co-nas-wyroznia-ik-3.png); - background-size: 35% 35%; -} - -#custom-text .circle-4 { - background-image: url(../img/co-nas-wyroznia-ik-4.png); - background-size: 35% 35%; -} - -#custom-text h2 { - text-transform: uppercase; - font-size: 1.2rem; - font-weight: 700; - color: #ffffff; -} - -#custom-text .custom-text-content H3 { - text-transform: uppercase; - font-size: 1rem; - font-weight: 700; - margin-top: 7px; - margin-bottom: 0px; - color: #13448f; -} - -#custom-text p { - font-weight: 400; - font-size: 0.8em; - margin: 0px; - color: #666666; -} - -#custom-text p .dark { - color: #7a7a7a; - font-weight: 400; -} - -@media (max-width: 1599.9px) { - #custom-text .custom-text-content { - padding-top: 50px; - padding-bottom: 50px; - } - #custom-text .circle { - width: 163px; - height: 163px; - background-size: 45%; - } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - } -} -@media (max-width: 1199.9px) { - #custom-text .custom-text-content { - padding-top: 35px; - padding-bottom: 35px; - } - #custom-text .circle { - width: 123px; - height: 123px; - background-size: 40%; - } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 21px; - } -} -@media (max-width: 576.9px) { - #custom-text .custom-text-content { - padding-top: 10px; - padding-bottom: 10px; - } - #slider #custom-text { - display: none; - } - .page-home #custom-text { - display: flex; - } - #custom-text .circle-column p { - height: 50px; - } - #custom-text .circle { - width: 70px; - height: 70px; - background-size: 30%; - } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 18px; - } -} -/**------------------------- STRONA GŁÓWNA ------------------------*/ -/** Revolution Slider **/ -.rev_slider_wrapper { - float: left; - margin-bottom: 15px !important; -} - -#rev_slider_1_1_wrapper { - max-width: 767px; - width: 100%; - margin-right: 17px !important; -} - -#rev_slider_2_2_wrapper { - max-width: 378px; - width: 100%; -} - -/** Blog **/ -.blog.blocks.displayHome .post-item { - background-color: #fafafa; - padding: 0px; - border: none; -} - -.blog.blocks.displayHome .post-item .post-item-cover img { - max-width: 100%; - width: 100%; -} - -.blog.blocks.displayHome .post-item .post-item-cover { - margin-bottom: 15px; -} - -.blog.blocks.displayHome .post-item .post-item-title { - padding: 15px; - padding-bottom: 0px; -} - -.blog.blocks.displayHome .post-item .post-item-title H3 { - margin-bottom: 8px; -} - -.blog.blocks.displayHome .post-item .post-item-title a { - font-size: 20px; - line-height: 20px; - color: #000000; - font-weight: 400; -} - -.blog.blocks.displayHome .post-item .post-item-content { - padding: 15px; -} - -.blog.blocks.displayHome .post-item .item-readmore.pull-right { - font-size: 13px; - font-weight: 400; - color: #797979; - border: solid 2px #797979; - padding: 3px; - padding-left: 10px; - padding-right: 10px; - border-radius: 3px; - margin-right: 15px; - margin-bottom: 15px; -} - -.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; -} - -/** ----------------------- PRODUKTY ----------------------------------------------------**/ -/* Lista*/ -#products .products-section-title, -.featured-products .products-section-title, -.product-accessories .products-section-title, -.product-miniature .products-section-title { - text-align: left; - margin-bottom: 2rem; - padding-bottom: 1.5rem; - font-family: "Open Sans", sans-serif; - font-size: 2rem; - font-weight: 800; - text-transform: uppercase; - line-height: 2rem; - color: #000; - border-bottom: solid 1px #ccc; -} - -.product-miniature { - margin-left: 0px !important; - margin-right: 0px !important; -} - -#products .thumbnail-container, -.featured-products .thumbnail-container, -.product-accessories .thumbnail-container, -.product-miniature .thumbnail-container { - width: auto !important; - margin-top: 15px; - margin-bottom: 0 !important; -} - -#products .thumbnail-container:hover, -.featured-products .thumbnail-container:hover, -.product-accessories .thumbnail-container:hover, -.product-miniature .thumbnail-container:hover { - box-shadow: none; - background-color: #fbfbfb; -} - -.thumbnail.product-thumbnail { - overflow: hidden; - height: 300px; -} -@media (max-width: 767px) { - .thumbnail.product-thumbnail { - height: 222px; - } -} -.thumbnail.product-thumbnail img { - height: 100% !important; - width: 100% !important; - -o-object-fit: contain; - object-fit: contain; -} - -#products .thumbnail-container img, -.featured-products .thumbnail-container img, -.product-accessories .thumbnail-container img, -.product-miniature .thumbnail-container img { - position: relative; - width: 100% !important; - height: auto; - transition: all 0.8s ease; - margin: 0px; -} - -#products .product-description, -.featured-products .product-description, -.product-accessories .product-description, -.product-miniature .product-description { - width: auto !important; - padding: 10px; - position: absolute; - bottom: 0; - display: flex; - align-items: flex-end; - flex-wrap: wrap; -} -@media (max-width: 767px) { - #products .product-description, - .featured-products .product-description, - .product-accessories .product-description, - .product-miniature .product-description { - height: auto !important; - } -} -#products .product-description .product-buttons, -.featured-products .product-description .product-buttons, -.product-accessories .product-description .product-buttons, -.product-miniature .product-description .product-buttons { - width: 100%; -} - -#products .product-title, -.featured-products .product-title, -.product-accessories .product-title, -.product-miniature .product-title { - width: 100%; -} -#products .product-title h3, -.featured-products .product-title h3, -.product-accessories .product-title h3, -.product-miniature .product-title h3 { - margin-bottom: 0; -} - -#products .product-title H3 a, -.featured-products .product-title H3 a, -.product-accessories .product-title H3 a, -.product-miniature .product-title H3 a { - color: #000000; - font-size: 14px; - line-height: 22px; - text-decoration: none; - text-align: left; - font-weight: 500; - margin-top: 5px; - text-transform: none; -} -@media (max-width: 767px) { - #products .product-title H3 a, - .featured-products .product-title H3 a, - .product-accessories .product-title H3 a, - .product-miniature .product-title H3 a { - font-size: 13px; - } -} - -#products .highlighted-informations, -.featured-products .highlighted-informations, -.product-accessories .highlighted-informations, -.product-miniature .highlighted-informations { - position: absolute; - bottom: 0px; - padding-top: 0.625rem; - z-index: 300; - background: #fff; - text-align: center; - width: 100% !important; - height: 3.125rem; - transition: bottom 0.3s; - opacity: 0; -} - -#products .product-buttons a.product-show-more-link, -featured-products .product-buttons a.product-show-more-link, -.product-accessories .product-buttons a.product-show-more-link, -.product-miniature .product-buttons a.product-show-more-link { - font-size: 0.85rem; - font-weight: 400; - color: #ffffff; - background-color: #112c50; - padding: 4px; - height: 16px; - border-radius: 2px; - display: inline; - margin-top: 2px; -} - -#products .product-buttons a.product-show-more-link:hover, -featured-products .product-buttons a.product-show-more-link:hover, -.product-accessories .product-buttons a.product-show-more-link:hover, -.product-miniature .product-buttons a.product-show-more-link:hover { - background-color: #218fff; - font-size: 0.85rem; - border: none; - padding: 4px; - height: 16px; -} - -#products .product-buttons .add-to-cart-button, -.featured-products .product-buttons .add-to-cart-button, -.product-accessories .product-buttons .add-to-cart-button, -.product-miniature .product-buttons .add-to-cart-button { - color: #ffffff; - border: solid 2px #218fff; - background-color: #218fff; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; - height: 23px; -} - -#products .product-buttons .add-to-cart-button i, -.featured-products .product-buttons .add-to-cart-button i, -.product-accessories .product-buttons .add-to-cart-button i, -.product-miniature .product-buttons .add-to-cart-button i { - font-size: 0.85rem; - color: #ffffff; - margin-top: -15px; -} - -/* Flagi produktów */ -#products .product-miniature .discount-amount, -#products .product-miniature .discount-percentage, -#products .product-miniature .on-sale, -#products .product-miniature .online-only, -#products .product-miniature .pack, -#products .product-miniature .product-flags .new, -.featured-products .product-miniature .discount-amount, -.featured-products .product-miniature .discount-percentage, -.featured-products .product-miniature .on-sale, -.featured-products .product-miniature .online-only, -.featured-products .product-miniature .pack, -.featured-products .product-miniature .product-flags .new, -.product-accessories .product-miniature .discount-amount, -.product-accessories .product-miniature .discount-percentage, -.product-accessories .product-miniature .on-sale, -.product-accessories .product-miniature .online-only, -.product-accessories .product-miniature .pack, -.product-accessories .product-miniature .product-flags .new, -.product-miniature .product-miniature .discount-amount, -.product-miniature .product-miniature .discount-percentage, -.product-miniature .product-miniature .on-sale, -.product-miniature .product-miniature .online-only, -.product-miniature .product-miniature .pack, -.product-miniature .product-miniature .product-flags .new { - display: block; - position: absolute; - left: 4px; - padding: 1px; - padding-left: 4px; - padding-right: 4px; - color: #333; - background: #f3f3f3; - min-width: 2rem; - min-height: 1rem; - font-size: 0.8rem; - font-weight: 500; -} - -/** Strona z produktem ******************************************************************************/ -/** Przewoznicy **/ -section.sposoby-dostawy .row { - padding-bottom: 15px; -} - -section.sposoby-dostawy .row.delivery-option { - padding-bottom: 0px; -} - -section.sposoby-dostawy .row .col-md-2.col-xs-12 { - text-align: center; -} - -section.sposoby-dostawy .row .col-md-2.col-xs-12 img { - max-width: 70px; - margin-left: auto; - margin-right: auto; -} - -section.sposoby-dostawy .h6.carrier-name { - font-weight: 600; -} - -section.sposoby-dostawy .carrier-delay { - font-size: 1rem; - font-weight: 300; -} - -section.sposoby-dostawy .carrier-price { - font-weight: 700; -} - -/** Select wyboru producentów **************************/ -@media (max-width: 479.9px) { - #search_filters_brands { - display: none; - } -} -/** Rotator logotypów marek *****************************/ -.brands-slider { - margin-top: 30px; -} - -.brands-slider .nbs-flexisel-item { - padding-left: 15px; - padding-right: 15px; -} - -.brands-slider .nbs-flexisel-item a img { - max-width: 60%; - width: 100%; - margoin-left: auto; - margin-right: auto; -} - -/** Składanie zamówienia *********************************/ -@media (max-width: 479.9px) { - #onepagecheckoutps #customer_container .rowp { - display: flex; - } - #onepagecheckoutps #customer_container .row, - #onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required { - max-width: 110%; - width: 100%; - padding-right: 0px; - } - #onepagecheckoutps .required::after { - display: none !important; - } - #onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay { - display: none; - } - div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img { - max-width: 50px; - } -} -/** Przycisk scrollowania do góry *******************************************/ -#back-to-top { - position: fixed; - bottom: 60px; - right: 100px; - z-index: 99999; - width: 42px; - height: 42px; - text-align: center; - line-height: 42px; - background-color: #141414; - color: #ffffff; - cursor: pointer; - border: 0; - border-radius: 2px; - text-decoration: none; - opacity: 0; -} - -#back-to-top:hover { - background-color: #ff4800; -} - -#back-to-top.show { - opacity: 1; -} - -.product-quantity { - align-items: center; -} -.product-quantity .certyfikat { - margin-left: 15px; -} - -.sollux-custom-box { - margin-bottom: 30px; -} -.sollux-custom-box img { - width: 100%; - max-width: -moz-fit-content; - max-width: fit-content; -} - -body#checkout main #main form .form-group.required::after { - display: none; -} - -.product-add-to-card-button { - display: flex !important; - flex-direction: row; - align-items: center; - padding: 5px 10px 6px !important; - height: auto !important; - -moz-column-gap: 7px; - column-gap: 7px; - margin: 0 auto; -} -.product-add-to-card-button i.material-icons { - margin: 0 !important; -} -.product-add-to-card-button span { - font-size: 12px; - font-weight: 400; - color: #fff; - border-radius: 2px; - line-height: 1; -} - -article.product-miniature .product-description > a { - width: 100%; -} -article.product-miniature .discount-amount.discount-amount, -article.product-miniature .on-sale.on-sale, -article.product-miniature .discount-percentage.discount-percentage { - background: #f14848 !important; - color: #fff; - left: 0; -} - -#products .product-buttons .add-to-cart-button, -.featured-products .product-buttons .add-to-cart-button, -.product-accessories .product-buttons .add-to-cart-button, -.product-miniature .product-buttons .add-to-cart-button { - color: #ffffff; - border: solid 2px #218fff; - background-color: #218fff; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding: 4px; - display: flex; - text-align: center; - margin: 0 auto; - align-items: center; - justify-items: center; -} -#products .product-buttons .add-to-cart-button:hover, -.featured-products .product-buttons .add-to-cart-button:hover, -.product-accessories .product-buttons .add-to-cart-button:hover, -.product-miniature .product-buttons .add-to-cart-button:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; -} -#products .product-buttons .add-to-cart-button i, -.featured-products .product-buttons .add-to-cart-button i, -.product-accessories .product-buttons .add-to-cart-button i, -.product-miniature .product-buttons .add-to-cart-button i { - font-size: 0.85rem; - color: #ffffff; - margin-top: 1px; -} - -.product-miniature .product-buttons .product-add-to-card-button { - font-size: 12px; -} -.product-miniature .product-buttons .product-add-to-card-button i { - margin-top: -2px; - margin-right: 2px; -} - -#header .logo { - max-width: 115%; - width: 115%; - margin-top: -8px; - max-height: 93px; - -o-object-fit: cover; - object-fit: cover; -} - -#header .header-nav .blockcart { - background: #218fff; - cursor: pointer; -} -#header .header-nav .blockcart:hover { - background: #112c50; -} -#header .header-nav .blockcart.inactive .cart-products-count { - color: #fff; -} - -#header .header-top > .container > .row { - display: flex; - align-items: center; - flex-wrap: wrap; -} - -#_desktop_contact_link_temp { - display: none; -} - -#nav-phone-numb { - display: flex; - flex-direction: row; - align-items: center; - margin-left: 10px; - -moz-column-gap: 5px; - column-gap: 5px; - height: 50px; -} -#nav-phone-numb i { - font-size: 21px; -} -#nav-phone-numb a { - color: #f57e20; -} - -@media (max-width: 767px) { - footer#footer .footer-container .block-contact .hidden-sm-down { - display: block !important; - padding: 0.625rem; - } - footer#footer .footer-container .block-contact .hidden-md-up { - display: none !important; - } -}/*# sourceMappingURL=custom.css.map */ \ No newline at end of file +.img-fluid,.img-thumbnail{max-width:100%;height:auto}section#slider{padding-top:25px}#wrapper{background-color:#fff;padding-top:25px;padding-bottom:50px}@media(max-width: 479.9px){#wrapper{padding-top:0px}}#header .header-nav #_desktop_contact_link{display:inline-block;font-weight:500}#header .header-nav #_desktop_contact_link .contact-info-phone,#header .header-nav #_desktop_contact_link .contact-info-email,#header .header-nav #_desktop_contact_link .contact-info-open-hours{float:left;margin-right:25px}#header .header-nav #_desktop_contact_link .contact-info-phone a{color:#f57e20}#header .header-nav #_desktop_contact_link .contact-info-phone a:hover{color:#2fb5d2}#header .header-nav #_desktop_contact_link i{margin-right:4px}#header .header-nav #_desktop_contact_link #contact-link{margin-top:.9375rem}.html-block-content{margin-bottom:40px}.block-categories li[data-depth="0"]{position:relative;border-bottom:1px solid #c4c4c4}.block-categories .category-sub-menu li[data-depth="0"]>a{padding-top:13px;padding-bottom:13px;position:relative;z-index:30;width:auto !important;display:inline-block;border-bottom:none}.block-categories .navbar-toggler{width:100%;height:4em;padding:0;padding0-top:13px;padding-bottom:0px;margin-top:-11px;font-size:.9375rem;line-height:1;background:rgba(0,0,0,0) no-repeat 50%;background-size:auto;background-size:24px 24px;border:1px solid rgba(0,0,0,0);border-radius:0;position:absolute;z-index:29}.block-categories .navbar-toggler i{float:right;margin-top:11px}#custom-text{text-align:center;background-color:#f9f9f9;margin-bottom:15px}.page-home #custom-text{display:none}#custom-text .custom-text-content{max-width:1600px;width:100%;margin-left:auto;margin-right:auto;color:#666;display:table;padding-top:20px;padding-bottom:20px}#custom-text .circle{border-radius:50%;behavior:url(PIE.htc);width:50px;height:50px;border:2px solid #13448f;display:block;margin-left:auto;margin-right:auto;background-repeat:no-repeat;background-position:center center}#custom-text .circle-1{background-image:url(../img/co-nas-wyroznia-ik-1.png);background-size:35% 35%}#custom-text .circle-2{background-image:url(../img/co-nas-wyroznia-ik-2.png);background-size:35% 35%}#custom-text .circle-3{background-image:url(../img/co-nas-wyroznia-ik-3.png);background-size:35% 35%}#custom-text .circle-4{background-image:url(../img/co-nas-wyroznia-ik-4.png);background-size:35% 35%}#custom-text h2{text-transform:uppercase;font-size:1.2rem;font-weight:700;color:#fff}#custom-text .custom-text-content H3{text-transform:uppercase;font-size:1rem;font-weight:700;margin-top:7px;margin-bottom:0px;color:#13448f}#custom-text p{font-weight:400;font-size:.8em;margin:0px;color:#666}#custom-text p .dark{color:#7a7a7a;font-weight:400}@media(max-width: 1599.9px){#custom-text .custom-text-content{padding-top:50px;padding-bottom:50px}#custom-text .circle{width:163px;height:163px;background-size:45%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px}}@media(max-width: 1199.9px){#custom-text .custom-text-content{padding-top:35px;padding-bottom:35px}#custom-text .circle{width:123px;height:123px;background-size:40%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:21px}}@media(max-width: 576.9px){#custom-text .custom-text-content{padding-top:10px;padding-bottom:10px}#slider #custom-text{display:none}.page-home #custom-text{display:flex}#custom-text .circle-column p{height:50px}#custom-text .circle{width:70px;height:70px;background-size:30%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:18px}}.rev_slider_wrapper{float:left;margin-bottom:15px !important}#rev_slider_1_1_wrapper{max-width:767px;width:100%;margin-right:17px !important}#rev_slider_2_2_wrapper{max-width:378px;width:100%}.blog.blocks.displayHome .post-item{background-color:#fafafa;padding:0px;border:none}.blog.blocks.displayHome .post-item .post-item-cover img{max-width:100%;width:100%}.blog.blocks.displayHome .post-item .post-item-cover{margin-bottom:15px}.blog.blocks.displayHome .post-item .post-item-title{padding:15px;padding-bottom:0px}.blog.blocks.displayHome .post-item .post-item-title H3{margin-bottom:8px}.blog.blocks.displayHome .post-item .post-item-title a{font-size:20px;line-height:20px;color:#000;font-weight:400}.blog.blocks.displayHome .post-item .post-item-content{padding:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right{font-size:13px;font-weight:400;color:#797979;border:solid 2px #797979;padding:3px;padding-left:10px;padding-right:10px;border-radius:3px;margin-right:15px;margin-bottom:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50}#products .products-section-title,.featured-products .products-section-title,.product-accessories .products-section-title,.product-miniature .products-section-title{text-align:left;margin-bottom:2rem;padding-bottom:1.5rem;font-family:"Open Sans",sans-serif;font-size:2rem;font-weight:800;text-transform:uppercase;line-height:2rem;color:#000;border-bottom:solid 1px #ccc}.product-miniature{margin-left:0px !important;margin-right:0px !important}#products .thumbnail-container,.featured-products .thumbnail-container,.product-accessories .thumbnail-container,.product-miniature .thumbnail-container{width:auto !important;margin-top:15px;margin-bottom:0 !important}#products .thumbnail-container:hover,.featured-products .thumbnail-container:hover,.product-accessories .thumbnail-container:hover,.product-miniature .thumbnail-container:hover{box-shadow:none;background-color:#fbfbfb}.thumbnail.product-thumbnail{overflow:hidden;height:300px}@media(max-width: 767px){.thumbnail.product-thumbnail{height:222px}}.thumbnail.product-thumbnail img{height:100% !important;width:100% !important;-o-object-fit:contain;object-fit:contain}#products .thumbnail-container img,.featured-products .thumbnail-container img,.product-accessories .thumbnail-container img,.product-miniature .thumbnail-container img{position:relative;width:100% !important;height:auto;transition:all .8s ease;margin:0px}#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{width:auto !important;padding:10px;position:absolute;bottom:0;display:flex;align-items:flex-end;flex-wrap:wrap}@media(max-width: 767px){#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{height:auto !important}}#products .product-description .product-buttons,.featured-products .product-description .product-buttons,.product-accessories .product-description .product-buttons,.product-miniature .product-description .product-buttons{width:100%}#products .product-title,.featured-products .product-title,.product-accessories .product-title,.product-miniature .product-title{width:100%}#products .product-title h3,.featured-products .product-title h3,.product-accessories .product-title h3,.product-miniature .product-title h3{margin-bottom:0}#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{color:#000;font-size:14px;line-height:22px;text-decoration:none;text-align:left;font-weight:500;margin-top:5px;text-transform:none}@media(max-width: 767px){#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{font-size:13px}}#products .highlighted-informations,.featured-products .highlighted-informations,.product-accessories .highlighted-informations,.product-miniature .highlighted-informations{position:absolute;bottom:0px;padding-top:.625rem;z-index:300;background:#fff;text-align:center;width:100% !important;height:3.125rem;transition:bottom .3s;opacity:0}#products .product-buttons a.product-show-more-link,featured-products .product-buttons a.product-show-more-link,.product-accessories .product-buttons a.product-show-more-link,.product-miniature .product-buttons a.product-show-more-link{font-size:.85rem;font-weight:400;color:#fff;background-color:#112c50;padding:4px;height:16px;border-radius:2px;display:inline;margin-top:2px}#products .product-buttons a.product-show-more-link:hover,featured-products .product-buttons a.product-show-more-link:hover,.product-accessories .product-buttons a.product-show-more-link:hover,.product-miniature .product-buttons a.product-show-more-link:hover{background-color:#218fff;font-size:.85rem;border:none;padding:4px;height:16px}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px;height:23px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:-15px}#products .product-miniature .discount-amount,#products .product-miniature .discount-percentage,#products .product-miniature .on-sale,#products .product-miniature .online-only,#products .product-miniature .pack,#products .product-miniature .product-flags .new,.featured-products .product-miniature .discount-amount,.featured-products .product-miniature .discount-percentage,.featured-products .product-miniature .on-sale,.featured-products .product-miniature .online-only,.featured-products .product-miniature .pack,.featured-products .product-miniature .product-flags .new,.product-accessories .product-miniature .discount-amount,.product-accessories .product-miniature .discount-percentage,.product-accessories .product-miniature .on-sale,.product-accessories .product-miniature .online-only,.product-accessories .product-miniature .pack,.product-accessories .product-miniature .product-flags .new,.product-miniature .product-miniature .discount-amount,.product-miniature .product-miniature .discount-percentage,.product-miniature .product-miniature .on-sale,.product-miniature .product-miniature .online-only,.product-miniature .product-miniature .pack,.product-miniature .product-miniature .product-flags .new{display:block;position:absolute;left:4px;padding:1px;padding-left:4px;padding-right:4px;color:#333;background:#f3f3f3;min-width:2rem;min-height:1rem;font-size:.8rem;font-weight:500}section.sposoby-dostawy .row{padding-bottom:15px}section.sposoby-dostawy .row.delivery-option{padding-bottom:0px}section.sposoby-dostawy .row .col-md-2.col-xs-12{text-align:center}section.sposoby-dostawy .row .col-md-2.col-xs-12 img{max-width:70px;margin-left:auto;margin-right:auto}section.sposoby-dostawy .h6.carrier-name{font-weight:600}section.sposoby-dostawy .carrier-delay{font-size:1rem;font-weight:300}section.sposoby-dostawy .carrier-price{font-weight:700}@media(max-width: 479.9px){#search_filters_brands{display:none}}.brands-slider{margin-top:30px}.brands-slider .nbs-flexisel-item{padding-left:15px;padding-right:15px}.brands-slider .nbs-flexisel-item a img{max-width:60%;width:100%;margoin-left:auto;margin-right:auto}@media(max-width: 479.9px){#onepagecheckoutps #customer_container .rowp{display:flex}#onepagecheckoutps #customer_container .row,#onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required{max-width:110%;width:100%;padding-right:0px}#onepagecheckoutps .required::after{display:none !important}#onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay{display:none}div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img{max-width:50px}}#back-to-top{position:fixed;bottom:60px;right:100px;z-index:99999;width:42px;height:42px;text-align:center;line-height:42px;background-color:#141414;color:#fff;cursor:pointer;border:0;border-radius:2px;text-decoration:none;opacity:0}#back-to-top:hover{background-color:#ff4800}#back-to-top.show{opacity:1}.product-quantity{align-items:center}.product-quantity .certyfikat{margin-left:15px}.sollux-custom-box{margin-bottom:30px}.sollux-custom-box img{width:100%;max-width:-moz-fit-content;max-width:fit-content}body#checkout main #main form .form-group.required::after{display:none}.product-add-to-card-button{display:flex !important;flex-direction:row;align-items:center;padding:5px 10px 6px !important;height:auto !important;-moz-column-gap:7px;column-gap:7px;margin:0 auto}.product-add-to-card-button i.material-icons{margin:0 !important}.product-add-to-card-button span{font-size:12px;font-weight:400;color:#fff;border-radius:2px;line-height:1}article.product-miniature .product-description>a{width:100%}article.product-miniature .discount-amount.discount-amount,article.product-miniature .on-sale.on-sale,article.product-miniature .discount-percentage.discount-percentage{background:#f14848 !important;color:#fff;left:0}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding:4px;display:flex;text-align:center;margin:0 auto;align-items:center;justify-items:center}#products .product-buttons .add-to-cart-button:hover,.featured-products .product-buttons .add-to-cart-button:hover,.product-accessories .product-buttons .add-to-cart-button:hover,.product-miniature .product-buttons .add-to-cart-button:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:1px}.product-miniature .product-buttons .product-add-to-card-button{font-size:12px}.product-miniature .product-buttons .product-add-to-card-button i{margin-top:-2px;margin-right:2px}#header .logo{max-width:115%;width:115%;margin-top:-8px;max-height:93px;-o-object-fit:cover;object-fit:cover}#header .header-nav .blockcart{background:#218fff;cursor:pointer}#header .header-nav .blockcart:hover{background:#112c50}#header .header-nav .blockcart.inactive .cart-products-count{color:#fff}#header .header-top>.container>.row{display:flex;align-items:center;flex-wrap:wrap}#_desktop_contact_link_temp{display:none}#nav-phone-numb{display:flex;flex-direction:row;align-items:center;margin-left:10px;-moz-column-gap:5px;column-gap:5px;height:50px}#nav-phone-numb i{font-size:21px}#nav-phone-numb a{color:#f57e20}@media(max-width: 767px){footer#footer .footer-container .block-contact .hidden-sm-down{display:block !important;padding:.625rem}footer#footer .footer-container .block-contact .hidden-md-up{display:none !important}}#history .table-labeled .label{color:#232323 !important}/*# sourceMappingURL=custom.css.map */ \ No newline at end of file diff --git a/themes/InterBlue/assets/css/custom.css.map b/themes/InterBlue/assets/css/custom.css.map index bcce77d9..85117a85 100644 --- a/themes/InterBlue/assets/css/custom.css.map +++ b/themes/InterBlue/assets/css/custom.css.map @@ -1 +1 @@ -{"version":3,"sources":["custom.css","custom.scss"],"names":[],"mappings":"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","file":"custom.css"} \ No newline at end of file +{"version":3,"sources":["custom.scss"],"names":[],"mappings":"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","file":"custom.css","sourcesContent":["// out: custom.css, compress: true, sourceMap: true\r\n/*\r\n * Custom code goes here.\r\n * A template should always ship with an empty custom.css\r\n */\r\n\r\n$cOrange: #ff7100;\r\n$cBlue: #218fff;\r\n\r\n.img-fluid,\r\n.img-thumbnail {\r\n max-width: 100%;\r\n height: auto;\r\n}\r\n\r\n/** Sekcje **********************************************/\r\nsection#slider {\r\n padding-top: 25px;\r\n}\r\n\r\n/** Wrapper sklepu ************************************************************************/\r\n#wrapper {\r\n background-color: #ffffff;\r\n padding-top: 25px;\r\n padding-bottom: 50px;\r\n}\r\n\r\n@media (max-width: 479.9px) {\r\n #wrapper {\r\n padding-top: 0px;\r\n }\r\n}\r\n\r\n/** Header sklepu - kontakt ***************************************************************/\r\n#header .header-nav #_desktop_contact_link {\r\n display: inline-block;\r\n font-weight: 500;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone,\r\n#header .header-nav #_desktop_contact_link .contact-info-email,\r\n#header .header-nav #_desktop_contact_link .contact-info-open-hours {\r\n float: left;\r\n margin-right: 25px;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone a {\r\n color: #f57e20;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone a:hover {\r\n color: #2fb5d2;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link i {\r\n margin-right: 4px;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link #contact-link {\r\n margin-top: 0.9375rem;\r\n}\r\n\r\n/** Blok html *******************************************/\r\n.html-block-content {\r\n margin-bottom: 40px;\r\n}\r\n\r\n/** Drzewko kategorii ***********************************/\r\n.block-categories li[data-depth='0'] {\r\n position: relative;\r\n border-bottom: 1px solid #c4c4c4;\r\n}\r\n\r\n.block-categories .category-sub-menu li[data-depth='0']>a {\r\n padding-top: 13px;\r\n padding-bottom: 13px;\r\n position: relative;\r\n z-index: 30;\r\n width: auto !important;\r\n display: inline-block;\r\n border-bottom: none;\r\n}\r\n\r\n.block-categories .navbar-toggler {\r\n width: 100%;\r\n height: 4em;\r\n padding: 0;\r\n padding0-top: 13px;\r\n padding-bottom: 0px;\r\n margin-top: -11px;\r\n font-size: 0.9375rem;\r\n line-height: 1;\r\n background: transparent no-repeat 50%;\r\n background-size: auto;\r\n background-size: 24px 24px;\r\n border: 1px solid transparent;\r\n border-radius: 0;\r\n position: absolute;\r\n z-index: 29;\r\n}\r\n\r\n.block-categories .navbar-toggler i {\r\n float: right;\r\n margin-top: 11px;\r\n}\r\n\r\n/** Wlasny blok tekstowy ****/\r\n#custom-text {\r\n text-align: center;\r\n background-color: #f9f9f9;\r\n margin-bottom: 15px;\r\n}\r\n\r\n.page-home #custom-text {\r\n display: none;\r\n}\r\n\r\n#custom-text .custom-text-content {\r\n max-width: 1600px;\r\n width: 100%;\r\n margin-left: auto;\r\n margin-right: auto;\r\n color: #666666;\r\n display: table;\r\n padding-top: 20px;\r\n padding-bottom: 20px;\r\n}\r\n\r\n#custom-text .circle {\r\n border-radius: 50%;\r\n behavior: url(PIE.htc);\r\n /* remove if you don't care about IE8 */\r\n width: 50px;\r\n height: 50px;\r\n border: 2px solid #13448f;\r\n display: block;\r\n margin-left: auto;\r\n margin-right: auto;\r\n background-repeat: no-repeat;\r\n background-position: center center;\r\n}\r\n\r\n#custom-text .circle-1 {\r\n background-image: url(../img/co-nas-wyroznia-ik-1.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-2 {\r\n background-image: url(../img/co-nas-wyroznia-ik-2.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-3 {\r\n background-image: url(../img/co-nas-wyroznia-ik-3.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-4 {\r\n background-image: url(../img/co-nas-wyroznia-ik-4.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text h2 {\r\n text-transform: uppercase;\r\n font-size: 1.2rem;\r\n font-weight: 700;\r\n color: #ffffff;\r\n}\r\n\r\n#custom-text .custom-text-content H3 {\r\n text-transform: uppercase;\r\n font-size: 1rem;\r\n font-weight: 700;\r\n margin-top: 7px;\r\n margin-bottom: 0px;\r\n color: #13448f;\r\n}\r\n\r\n#custom-text p {\r\n font-weight: 400;\r\n font-size: 0.8em;\r\n margin: 0px;\r\n color: #666666;\r\n}\r\n\r\n#custom-text p .dark {\r\n color: #7a7a7a;\r\n font-weight: 400;\r\n}\r\n\r\n@media (max-width: 1599.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 50px;\r\n padding-bottom: 50px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 163px;\r\n height: 163px;\r\n background-size: 45%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n }\r\n}\r\n\r\n@media (max-width: 1199.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 35px;\r\n padding-bottom: 35px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 123px;\r\n height: 123px;\r\n background-size: 40%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n font-size: 21px;\r\n }\r\n}\r\n\r\n@media (max-width: 576.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 10px;\r\n padding-bottom: 10px;\r\n }\r\n\r\n #slider #custom-text {\r\n display: none;\r\n }\r\n\r\n .page-home #custom-text {\r\n display: flex;\r\n }\r\n\r\n #custom-text .circle-column p {\r\n height: 50px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 70px;\r\n height: 70px;\r\n background-size: 30%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n font-size: 18px;\r\n }\r\n}\r\n\r\n/**------------------------- STRONA GŁÓWNA ------------------------*/\r\n\r\n/** Revolution Slider **/\r\n.rev_slider_wrapper {\r\n float: left;\r\n margin-bottom: 15px !important;\r\n}\r\n\r\n#rev_slider_1_1_wrapper {\r\n max-width: 767px;\r\n width: 100%;\r\n margin-right: 17px !important;\r\n}\r\n\r\n#rev_slider_2_2_wrapper {\r\n max-width: 378px;\r\n width: 100%;\r\n}\r\n\r\n/** Blog **/\r\n.blog.blocks.displayHome .post-item {\r\n background-color: #fafafa;\r\n padding: 0px;\r\n border: none;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-cover img {\r\n max-width: 100%;\r\n width: 100%;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-cover {\r\n margin-bottom: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title {\r\n padding: 15px;\r\n padding-bottom: 0px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title H3 {\r\n margin-bottom: 8px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title a {\r\n font-size: 20px;\r\n line-height: 20px;\r\n color: #000000;\r\n font-weight: 400;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-content {\r\n padding: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .item-readmore.pull-right {\r\n font-size: 13px;\r\n font-weight: 400;\r\n color: #797979;\r\n border: solid 2px #797979;\r\n padding: 3px;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n -webkit-border-radius: 3px;\r\n -moz-border-radius: 3px;\r\n border-radius: 3px;\r\n margin-right: 15px;\r\n margin-bottom: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover {\r\n color: #ffffff;\r\n border: solid 2px #112c50;\r\n background-color: #112c50;\r\n}\r\n\r\n/** ----------------------- PRODUKTY ----------------------------------------------------**/\r\n/* Lista*/\r\n#products .products-section-title,\r\n.featured-products .products-section-title,\r\n.product-accessories .products-section-title,\r\n.product-miniature .products-section-title {\r\n text-align: left;\r\n margin-bottom: 2rem;\r\n padding-bottom: 1.5rem;\r\n font-family: 'Open Sans', sans-serif;\r\n font-size: 2rem;\r\n font-weight: 800;\r\n text-transform: uppercase;\r\n line-height: 2rem;\r\n color: #000;\r\n border-bottom: solid 1px #ccc;\r\n}\r\n\r\n.product-miniature {\r\n margin-left: 0px !important;\r\n margin-right: 0px !important;\r\n}\r\n\r\n#products .thumbnail-container,\r\n.featured-products .thumbnail-container,\r\n.product-accessories .thumbnail-container,\r\n.product-miniature .thumbnail-container {\r\n width: auto !important;\r\n margin-top: 15px;\r\n margin-bottom: 0 !important;\r\n}\r\n\r\n#products .thumbnail-container:hover,\r\n.featured-products .thumbnail-container:hover,\r\n.product-accessories .thumbnail-container:hover,\r\n.product-miniature .thumbnail-container:hover {\r\n -webkit-box-shadow: none;\r\n -moz-box-shadow: none;\r\n box-shadow: none;\r\n background-color: #fbfbfb;\r\n}\r\n\r\n.thumbnail.product-thumbnail {\r\n overflow: hidden;\r\n height: 300px;\r\n\r\n @media (max-width: 767px) {\r\n height: 222px;\r\n }\r\n\r\n img {\r\n height: 100% !important;\r\n width: 100% !important;\r\n object-fit: contain;\r\n }\r\n}\r\n\r\n#products .thumbnail-container img,\r\n.featured-products .thumbnail-container img,\r\n.product-accessories .thumbnail-container img,\r\n.product-miniature .thumbnail-container img {\r\n position: relative;\r\n width: 100% !important;\r\n height: auto;\r\n transition: all 0.8s ease;\r\n margin: 0px;\r\n}\r\n\r\n#products .product-description,\r\n.featured-products .product-description,\r\n.product-accessories .product-description,\r\n.product-miniature .product-description {\r\n width: auto !important;\r\n padding: 10px;\r\n position: absolute;\r\n bottom: 0;\r\n display: flex;\r\n align-items: flex-end;\r\n flex-wrap: wrap;\r\n\r\n @media (max-width: 767px) {\r\n height: auto !important;\r\n }\r\n\r\n .product-buttons {\r\n width: 100%;\r\n }\r\n}\r\n\r\n#products .product-title,\r\n.featured-products .product-title,\r\n.product-accessories .product-title,\r\n.product-miniature .product-title {\r\n width: 100%;\r\n\r\n h3 {\r\n margin-bottom: 0;\r\n }\r\n}\r\n\r\n#products .product-title H3 a,\r\n.featured-products .product-title H3 a,\r\n.product-accessories .product-title H3 a,\r\n.product-miniature .product-title H3 a {\r\n color: #000000;\r\n font-size: 14px;\r\n line-height: 22px;\r\n text-decoration: none;\r\n text-align: left;\r\n font-weight: 500;\r\n margin-top: 5px;\r\n text-transform: none;\r\n\r\n @media (max-width: 767px) {\r\n font-size: 13px;\r\n }\r\n}\r\n\r\n#products .highlighted-informations,\r\n.featured-products .highlighted-informations,\r\n.product-accessories .highlighted-informations,\r\n.product-miniature .highlighted-informations {\r\n position: absolute;\r\n bottom: 0px;\r\n padding-top: 0.625rem;\r\n z-index: 300;\r\n background: #fff;\r\n text-align: center;\r\n width: 100% !important;\r\n height: 3.125rem;\r\n transition: bottom 0.3s;\r\n opacity: 0;\r\n}\r\n\r\n#products .product-buttons a.product-show-more-link,\r\nfeatured-products .product-buttons a.product-show-more-link,\r\n.product-accessories .product-buttons a.product-show-more-link,\r\n.product-miniature .product-buttons a.product-show-more-link {\r\n font-size: 0.85rem;\r\n font-weight: 400;\r\n color: #ffffff;\r\n background-color: #112c50;\r\n padding: 4px;\r\n height: 16px;\r\n -webkit-border-radius: 2px;\r\n -moz-border-radius: 2px;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: 2px;\r\n}\r\n\r\n#products .product-buttons a.product-show-more-link:hover,\r\nfeatured-products .product-buttons a.product-show-more-link:hover,\r\n.product-accessories .product-buttons a.product-show-more-link:hover,\r\n.product-miniature .product-buttons a.product-show-more-link:hover {\r\n background-color: $cBlue;\r\n font-size: 0.85rem;\r\n border: none;\r\n padding: 4px;\r\n height: 16px;\r\n}\r\n\r\n#products .product-buttons .add-to-cart-button,\r\n.featured-products .product-buttons .add-to-cart-button,\r\n.product-accessories .product-buttons .add-to-cart-button,\r\n.product-miniature .product-buttons .add-to-cart-button {\r\n color: #ffffff;\r\n border: solid 2px $cBlue;\r\n background-color: $cBlue;\r\n -webkit-border-radius: 2px;\r\n -moz-border-radius: 2px;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding-bottom: 4px;\r\n height: 23px;\r\n}\r\n\r\n#products .product-buttons .add-to-cart-button i,\r\n.featured-products .product-buttons .add-to-cart-button i,\r\n.product-accessories .product-buttons .add-to-cart-button i,\r\n.product-miniature .product-buttons .add-to-cart-button i {\r\n font-size: 0.85rem;\r\n color: #ffffff;\r\n margin-top: -15px;\r\n}\r\n\r\n/* Flagi produktów */\r\n#products .product-miniature .discount-amount,\r\n#products .product-miniature .discount-percentage,\r\n#products .product-miniature .on-sale,\r\n#products .product-miniature .online-only,\r\n#products .product-miniature .pack,\r\n#products .product-miniature .product-flags .new,\r\n.featured-products .product-miniature .discount-amount,\r\n.featured-products .product-miniature .discount-percentage,\r\n.featured-products .product-miniature .on-sale,\r\n.featured-products .product-miniature .online-only,\r\n.featured-products .product-miniature .pack,\r\n.featured-products .product-miniature .product-flags .new,\r\n.product-accessories .product-miniature .discount-amount,\r\n.product-accessories .product-miniature .discount-percentage,\r\n.product-accessories .product-miniature .on-sale,\r\n.product-accessories .product-miniature .online-only,\r\n.product-accessories .product-miniature .pack,\r\n.product-accessories .product-miniature .product-flags .new,\r\n.product-miniature .product-miniature .discount-amount,\r\n.product-miniature .product-miniature .discount-percentage,\r\n.product-miniature .product-miniature .on-sale,\r\n.product-miniature .product-miniature .online-only,\r\n.product-miniature .product-miniature .pack,\r\n.product-miniature .product-miniature .product-flags .new {\r\n display: block;\r\n position: absolute;\r\n left: 4px;\r\n padding: 1px;\r\n padding-left: 4px;\r\n padding-right: 4px;\r\n color: #333;\r\n background: #f3f3f3;\r\n min-width: 2rem;\r\n min-height: 1rem;\r\n font-size: 0.8rem;\r\n font-weight: 500;\r\n}\r\n\r\n/** Strona z produktem ******************************************************************************/\r\n\r\n/** Przewoznicy **/\r\nsection.sposoby-dostawy .row {\r\n padding-bottom: 15px;\r\n}\r\n\r\nsection.sposoby-dostawy .row.delivery-option {\r\n padding-bottom: 0px;\r\n}\r\n\r\nsection.sposoby-dostawy .row .col-md-2.col-xs-12 {\r\n text-align: center;\r\n}\r\n\r\nsection.sposoby-dostawy .row .col-md-2.col-xs-12 img {\r\n max-width: 70px;\r\n margin-left: auto;\r\n margin-right: auto;\r\n}\r\n\r\nsection.sposoby-dostawy .h6.carrier-name {\r\n font-weight: 600;\r\n}\r\n\r\nsection.sposoby-dostawy .carrier-delay {\r\n font-size: 1rem;\r\n font-weight: 300;\r\n}\r\n\r\nsection.sposoby-dostawy .carrier-price {\r\n font-weight: 700;\r\n}\r\n\r\n/** Select wyboru producentów **************************/\r\n@media (max-width: 479.9px) {\r\n #search_filters_brands {\r\n display: none;\r\n }\r\n}\r\n\r\n/** Rotator logotypów marek *****************************/\r\n.brands-slider {\r\n margin-top: 30px;\r\n}\r\n\r\n.brands-slider .nbs-flexisel-item {\r\n padding-left: 15px;\r\n padding-right: 15px;\r\n}\r\n\r\n.brands-slider .nbs-flexisel-item a img {\r\n max-width: 60%;\r\n width: 100%;\r\n margoin-left: auto;\r\n margin-right: auto;\r\n}\r\n\r\n/** Składanie zamówienia *********************************/\r\n@media (max-width: 479.9px) {\r\n #onepagecheckoutps #customer_container .rowp {\r\n display: flex;\r\n }\r\n\r\n #onepagecheckoutps #customer_container .row,\r\n #onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required {\r\n max-width: 110%;\r\n width: 100%;\r\n padding-right: 0px;\r\n }\r\n\r\n #onepagecheckoutps .required::after {\r\n display: none !important;\r\n }\r\n\r\n #onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay {\r\n display: none;\r\n }\r\n\r\n div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img {\r\n max-width: 50px;\r\n }\r\n}\r\n\r\n/** Przycisk scrollowania do góry *******************************************/\r\n#back-to-top {\r\n position: fixed;\r\n bottom: 60px;\r\n right: 100px;\r\n z-index: 99999;\r\n width: 42px;\r\n height: 42px;\r\n text-align: center;\r\n line-height: 42px;\r\n background-color: #141414;\r\n color: #ffffff;\r\n cursor: pointer;\r\n border: 0;\r\n border-radius: 2px;\r\n text-decoration: none;\r\n opacity: 0;\r\n}\r\n\r\n#back-to-top:hover {\r\n background-color: #ff4800;\r\n}\r\n\r\n#back-to-top.show {\r\n opacity: 1;\r\n}\r\n\r\n.product-quantity {\r\n align-items: center;\r\n\r\n .certyfikat {\r\n margin-left: 15px;\r\n }\r\n}\r\n\r\n.sollux-custom-box {\r\n margin-bottom: 30px;\r\n\r\n img {\r\n width: 100%;\r\n max-width: fit-content;\r\n }\r\n}\r\n\r\nbody {\r\n &#checkout {\r\n main {\r\n #main {\r\n form {\r\n .form-group {\r\n &.required {\r\n &::after {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-add-to-card-button {\r\n display: flex !important;\r\n flex-direction: row;\r\n align-items: center;\r\n padding: 5px 10px 6px !important;\r\n height: auto !important;\r\n column-gap: 7px;\r\n margin: 0 auto;\r\n\r\n i.material-icons {\r\n margin: 0 !important;\r\n }\r\n\r\n span {\r\n font-size: 12px;\r\n font-weight: 400;\r\n color: #fff;\r\n border-radius: 2px;\r\n line-height: 1;\r\n }\r\n}\r\n\r\narticle.product-miniature {\r\n .product-description {\r\n >a {\r\n width: 100%;\r\n }\r\n }\r\n\r\n .discount-amount.discount-amount,\r\n .on-sale.on-sale,\r\n .discount-percentage.discount-percentage {\r\n background: #f14848 !important;\r\n color: #fff;\r\n left: 0;\r\n }\r\n}\r\n\r\n#products,\r\n.featured-products,\r\n.product-accessories,\r\n.product-miniature {\r\n .product-buttons {\r\n .add-to-cart-button {\r\n color: #ffffff;\r\n border: solid 2px #218fff;\r\n background-color: #218fff;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding: 4px;\r\n display: flex;\r\n text-align: center;\r\n margin: 0 auto;\r\n align-items: center;\r\n justify-items: center;\r\n\r\n &:hover {\r\n color: #ffffff;\r\n border: solid 2px #112c50;\r\n background-color: #112c50;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding-bottom: 4px;\r\n }\r\n\r\n i {\r\n font-size: 0.85rem;\r\n color: #ffffff;\r\n margin-top: 1px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-miniature {\r\n .product-buttons {\r\n .product-add-to-card-button {\r\n font-size: 12px;\r\n\r\n i {\r\n margin-top: -2px;\r\n margin-right: 2px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#header .logo {\r\n max-width: 115%;\r\n width: 115%;\r\n margin-top: -8px;\r\n max-height: 93px;\r\n object-fit: cover;\r\n}\r\n\r\n#header {\r\n .header-nav {\r\n .blockcart {\r\n background: #218fff;\r\n cursor: pointer;\r\n\r\n &:hover {\r\n background: #112c50;\r\n }\r\n\r\n &.inactive {\r\n .cart-products-count {\r\n color: #fff;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#header {\r\n .header-top {\r\n >.container {\r\n >.row {\r\n display: flex;\r\n align-items: center;\r\n flex-wrap: wrap;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#_desktop_contact_link_temp {\r\n display: none;\r\n}\r\n\r\n#nav-phone-numb {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: center;\r\n margin-left: 10px;\r\n column-gap: 5px;\r\n height: 50px;\r\n\r\n i {\r\n font-size: 21px;\r\n }\r\n\r\n a {\r\n color: #f57e20;\r\n }\r\n}\r\n\r\nfooter#footer {\r\n @media (max-width: 767px) {\r\n .footer-container {\r\n .block-contact {\r\n .hidden-sm-down {\r\n display: block !important;\r\n padding: 0.625rem;\r\n\r\n .block-contact-title {}\r\n }\r\n\r\n .hidden-md-up {\r\n display: none !important;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#history {\r\n .table-labeled {\r\n .label {\r\n color: #232323 !important;\r\n }\r\n }\r\n}"]} \ No newline at end of file diff --git a/themes/InterBlue/assets/css/custom.scss b/themes/InterBlue/assets/css/custom.scss index 42481d14..9c528e7a 100644 --- a/themes/InterBlue/assets/css/custom.scss +++ b/themes/InterBlue/assets/css/custom.scss @@ -9,327 +9,327 @@ $cBlue: #218fff; .img-fluid, .img-thumbnail { - max-width: 100%; - height: auto; + max-width: 100%; + height: auto; } /** Sekcje **********************************************/ section#slider { - padding-top: 25px; + padding-top: 25px; } /** Wrapper sklepu ************************************************************************/ #wrapper { - background-color: #ffffff; - padding-top: 25px; - padding-bottom: 50px; + background-color: #ffffff; + padding-top: 25px; + padding-bottom: 50px; } @media (max-width: 479.9px) { - #wrapper { - padding-top: 0px; - } + #wrapper { + padding-top: 0px; + } } /** Header sklepu - kontakt ***************************************************************/ #header .header-nav #_desktop_contact_link { - display: inline-block; - font-weight: 500; + display: inline-block; + font-weight: 500; } #header .header-nav #_desktop_contact_link .contact-info-phone, #header .header-nav #_desktop_contact_link .contact-info-email, #header .header-nav #_desktop_contact_link .contact-info-open-hours { - float: left; - margin-right: 25px; + float: left; + margin-right: 25px; } #header .header-nav #_desktop_contact_link .contact-info-phone a { - color: #f57e20; + color: #f57e20; } #header .header-nav #_desktop_contact_link .contact-info-phone a:hover { - color: #2fb5d2; + color: #2fb5d2; } #header .header-nav #_desktop_contact_link i { - margin-right: 4px; + margin-right: 4px; } #header .header-nav #_desktop_contact_link #contact-link { - margin-top: 0.9375rem; + margin-top: 0.9375rem; } /** Blok html *******************************************/ .html-block-content { - margin-bottom: 40px; + margin-bottom: 40px; } /** Drzewko kategorii ***********************************/ .block-categories li[data-depth='0'] { - position: relative; - border-bottom: 1px solid #c4c4c4; + position: relative; + border-bottom: 1px solid #c4c4c4; } -.block-categories .category-sub-menu li[data-depth='0'] > a { - padding-top: 13px; - padding-bottom: 13px; - position: relative; - z-index: 30; - width: auto !important; - display: inline-block; - border-bottom: none; +.block-categories .category-sub-menu li[data-depth='0']>a { + padding-top: 13px; + padding-bottom: 13px; + position: relative; + z-index: 30; + width: auto !important; + display: inline-block; + border-bottom: none; } .block-categories .navbar-toggler { - width: 100%; - height: 4em; - padding: 0; - padding0-top: 13px; - padding-bottom: 0px; - margin-top: -11px; - font-size: 0.9375rem; - line-height: 1; - background: transparent no-repeat 50%; - background-size: auto; - background-size: 24px 24px; - border: 1px solid transparent; - border-radius: 0; - position: absolute; - z-index: 29; + width: 100%; + height: 4em; + padding: 0; + padding0-top: 13px; + padding-bottom: 0px; + margin-top: -11px; + font-size: 0.9375rem; + line-height: 1; + background: transparent no-repeat 50%; + background-size: auto; + background-size: 24px 24px; + border: 1px solid transparent; + border-radius: 0; + position: absolute; + z-index: 29; } .block-categories .navbar-toggler i { - float: right; - margin-top: 11px; + float: right; + margin-top: 11px; } /** Wlasny blok tekstowy ****/ #custom-text { - text-align: center; - background-color: #f9f9f9; - margin-bottom: 15px; + text-align: center; + background-color: #f9f9f9; + margin-bottom: 15px; } .page-home #custom-text { - display: none; + display: none; } #custom-text .custom-text-content { - max-width: 1600px; - width: 100%; - margin-left: auto; - margin-right: auto; - color: #666666; - display: table; - padding-top: 20px; - padding-bottom: 20px; + max-width: 1600px; + width: 100%; + margin-left: auto; + margin-right: auto; + color: #666666; + display: table; + padding-top: 20px; + padding-bottom: 20px; } #custom-text .circle { - border-radius: 50%; - behavior: url(PIE.htc); - /* remove if you don't care about IE8 */ - width: 50px; - height: 50px; - border: 2px solid #13448f; - display: block; - margin-left: auto; - margin-right: auto; - background-repeat: no-repeat; - background-position: center center; + border-radius: 50%; + behavior: url(PIE.htc); + /* remove if you don't care about IE8 */ + width: 50px; + height: 50px; + border: 2px solid #13448f; + display: block; + margin-left: auto; + margin-right: auto; + background-repeat: no-repeat; + background-position: center center; } #custom-text .circle-1 { - background-image: url(../img/co-nas-wyroznia-ik-1.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-1.png); + background-size: 35% 35%; } #custom-text .circle-2 { - background-image: url(../img/co-nas-wyroznia-ik-2.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-2.png); + background-size: 35% 35%; } #custom-text .circle-3 { - background-image: url(../img/co-nas-wyroznia-ik-3.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-3.png); + background-size: 35% 35%; } #custom-text .circle-4 { - background-image: url(../img/co-nas-wyroznia-ik-4.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-4.png); + background-size: 35% 35%; } #custom-text h2 { - text-transform: uppercase; - font-size: 1.2rem; - font-weight: 700; - color: #ffffff; + text-transform: uppercase; + font-size: 1.2rem; + font-weight: 700; + color: #ffffff; } #custom-text .custom-text-content H3 { - text-transform: uppercase; - font-size: 1rem; - font-weight: 700; - margin-top: 7px; - margin-bottom: 0px; - color: #13448f; + text-transform: uppercase; + font-size: 1rem; + font-weight: 700; + margin-top: 7px; + margin-bottom: 0px; + color: #13448f; } #custom-text p { - font-weight: 400; - font-size: 0.8em; - margin: 0px; - color: #666666; + font-weight: 400; + font-size: 0.8em; + margin: 0px; + color: #666666; } #custom-text p .dark { - color: #7a7a7a; - font-weight: 400; + color: #7a7a7a; + font-weight: 400; } @media (max-width: 1599.9px) { - #custom-text .custom-text-content { - padding-top: 50px; - padding-bottom: 50px; - } + #custom-text .custom-text-content { + padding-top: 50px; + padding-bottom: 50px; + } - #custom-text .circle { - width: 163px; - height: 163px; - background-size: 45%; - } + #custom-text .circle { + width: 163px; + height: 163px; + background-size: 45%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + } } @media (max-width: 1199.9px) { - #custom-text .custom-text-content { - padding-top: 35px; - padding-bottom: 35px; - } + #custom-text .custom-text-content { + padding-top: 35px; + padding-bottom: 35px; + } - #custom-text .circle { - width: 123px; - height: 123px; - background-size: 40%; - } + #custom-text .circle { + width: 123px; + height: 123px; + background-size: 40%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 21px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + font-size: 21px; + } } @media (max-width: 576.9px) { - #custom-text .custom-text-content { - padding-top: 10px; - padding-bottom: 10px; - } + #custom-text .custom-text-content { + padding-top: 10px; + padding-bottom: 10px; + } - #slider #custom-text { - display: none; - } + #slider #custom-text { + display: none; + } - .page-home #custom-text { - display: flex; - } + .page-home #custom-text { + display: flex; + } - #custom-text .circle-column p { - height: 50px; - } + #custom-text .circle-column p { + height: 50px; + } - #custom-text .circle { - width: 70px; - height: 70px; - background-size: 30%; - } + #custom-text .circle { + width: 70px; + height: 70px; + background-size: 30%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 18px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + font-size: 18px; + } } /**------------------------- STRONA GŁÓWNA ------------------------*/ /** Revolution Slider **/ .rev_slider_wrapper { - float: left; - margin-bottom: 15px !important; + float: left; + margin-bottom: 15px !important; } #rev_slider_1_1_wrapper { - max-width: 767px; - width: 100%; - margin-right: 17px !important; + max-width: 767px; + width: 100%; + margin-right: 17px !important; } #rev_slider_2_2_wrapper { - max-width: 378px; - width: 100%; + max-width: 378px; + width: 100%; } /** Blog **/ .blog.blocks.displayHome .post-item { - background-color: #fafafa; - padding: 0px; - border: none; + background-color: #fafafa; + padding: 0px; + border: none; } .blog.blocks.displayHome .post-item .post-item-cover img { - max-width: 100%; - width: 100%; + max-width: 100%; + width: 100%; } .blog.blocks.displayHome .post-item .post-item-cover { - margin-bottom: 15px; + margin-bottom: 15px; } .blog.blocks.displayHome .post-item .post-item-title { - padding: 15px; - padding-bottom: 0px; + padding: 15px; + padding-bottom: 0px; } .blog.blocks.displayHome .post-item .post-item-title H3 { - margin-bottom: 8px; + margin-bottom: 8px; } .blog.blocks.displayHome .post-item .post-item-title a { - font-size: 20px; - line-height: 20px; - color: #000000; - font-weight: 400; + font-size: 20px; + line-height: 20px; + color: #000000; + font-weight: 400; } .blog.blocks.displayHome .post-item .post-item-content { - padding: 15px; + padding: 15px; } .blog.blocks.displayHome .post-item .item-readmore.pull-right { - font-size: 13px; - font-weight: 400; - color: #797979; - border: solid 2px #797979; - padding: 3px; - padding-left: 10px; - padding-right: 10px; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - margin-right: 15px; - margin-bottom: 15px; + font-size: 13px; + font-weight: 400; + color: #797979; + border: solid 2px #797979; + padding: 3px; + padding-left: 10px; + padding-right: 10px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin-right: 15px; + margin-bottom: 15px; } .blog.blocks.displayHome .post-item .item-readmore.pull-right:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; + color: #ffffff; + border: solid 2px #112c50; + background-color: #112c50; } /** ----------------------- PRODUKTY ----------------------------------------------------**/ @@ -338,185 +338,185 @@ section#slider { .featured-products .products-section-title, .product-accessories .products-section-title, .product-miniature .products-section-title { - text-align: left; - margin-bottom: 2rem; - padding-bottom: 1.5rem; - font-family: 'Open Sans', sans-serif; - font-size: 2rem; - font-weight: 800; - text-transform: uppercase; - line-height: 2rem; - color: #000; - border-bottom: solid 1px #ccc; + text-align: left; + margin-bottom: 2rem; + padding-bottom: 1.5rem; + font-family: 'Open Sans', sans-serif; + font-size: 2rem; + font-weight: 800; + text-transform: uppercase; + line-height: 2rem; + color: #000; + border-bottom: solid 1px #ccc; } .product-miniature { - margin-left: 0px !important; - margin-right: 0px !important; + margin-left: 0px !important; + margin-right: 0px !important; } #products .thumbnail-container, .featured-products .thumbnail-container, .product-accessories .thumbnail-container, .product-miniature .thumbnail-container { - width: auto !important; - margin-top: 15px; - margin-bottom: 0 !important; + width: auto !important; + margin-top: 15px; + margin-bottom: 0 !important; } #products .thumbnail-container:hover, .featured-products .thumbnail-container:hover, .product-accessories .thumbnail-container:hover, .product-miniature .thumbnail-container:hover { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - background-color: #fbfbfb; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + background-color: #fbfbfb; } .thumbnail.product-thumbnail { - overflow: hidden; - height: 300px; + overflow: hidden; + height: 300px; - @media (max-width: 767px) { - height: 222px; - } + @media (max-width: 767px) { + height: 222px; + } - img { - height: 100% !important; - width: 100% !important; - object-fit: contain; - } + img { + height: 100% !important; + width: 100% !important; + object-fit: contain; + } } #products .thumbnail-container img, .featured-products .thumbnail-container img, .product-accessories .thumbnail-container img, .product-miniature .thumbnail-container img { - position: relative; - width: 100% !important; - height: auto; - transition: all 0.8s ease; - margin: 0px; + position: relative; + width: 100% !important; + height: auto; + transition: all 0.8s ease; + margin: 0px; } #products .product-description, .featured-products .product-description, .product-accessories .product-description, .product-miniature .product-description { - width: auto !important; - padding: 10px; - position: absolute; - bottom: 0; - display: flex; - align-items: flex-end; - flex-wrap: wrap; + width: auto !important; + padding: 10px; + position: absolute; + bottom: 0; + display: flex; + align-items: flex-end; + flex-wrap: wrap; - @media (max-width: 767px) { - height: auto !important; - } + @media (max-width: 767px) { + height: auto !important; + } - .product-buttons { - width: 100%; - } + .product-buttons { + width: 100%; + } } #products .product-title, .featured-products .product-title, .product-accessories .product-title, .product-miniature .product-title { - width: 100%; + width: 100%; - h3 { - margin-bottom: 0; - } + h3 { + margin-bottom: 0; + } } #products .product-title H3 a, .featured-products .product-title H3 a, .product-accessories .product-title H3 a, .product-miniature .product-title H3 a { - color: #000000; - font-size: 14px; - line-height: 22px; - text-decoration: none; - text-align: left; - font-weight: 500; - margin-top: 5px; - text-transform: none; + color: #000000; + font-size: 14px; + line-height: 22px; + text-decoration: none; + text-align: left; + font-weight: 500; + margin-top: 5px; + text-transform: none; - @media (max-width: 767px) { - font-size: 13px; - } + @media (max-width: 767px) { + font-size: 13px; + } } #products .highlighted-informations, .featured-products .highlighted-informations, .product-accessories .highlighted-informations, .product-miniature .highlighted-informations { - position: absolute; - bottom: 0px; - padding-top: 0.625rem; - z-index: 300; - background: #fff; - text-align: center; - width: 100% !important; - height: 3.125rem; - transition: bottom 0.3s; - opacity: 0; + position: absolute; + bottom: 0px; + padding-top: 0.625rem; + z-index: 300; + background: #fff; + text-align: center; + width: 100% !important; + height: 3.125rem; + transition: bottom 0.3s; + opacity: 0; } #products .product-buttons a.product-show-more-link, featured-products .product-buttons a.product-show-more-link, .product-accessories .product-buttons a.product-show-more-link, .product-miniature .product-buttons a.product-show-more-link { - font-size: 0.85rem; - font-weight: 400; - color: #ffffff; - background-color: #112c50; - padding: 4px; - height: 16px; - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px; - display: inline; - margin-top: 2px; + font-size: 0.85rem; + font-weight: 400; + color: #ffffff; + background-color: #112c50; + padding: 4px; + height: 16px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + display: inline; + margin-top: 2px; } #products .product-buttons a.product-show-more-link:hover, featured-products .product-buttons a.product-show-more-link:hover, .product-accessories .product-buttons a.product-show-more-link:hover, .product-miniature .product-buttons a.product-show-more-link:hover { - background-color: $cBlue; - font-size: 0.85rem; - border: none; - padding: 4px; - height: 16px; + background-color: $cBlue; + font-size: 0.85rem; + border: none; + padding: 4px; + height: 16px; } #products .product-buttons .add-to-cart-button, .featured-products .product-buttons .add-to-cart-button, .product-accessories .product-buttons .add-to-cart-button, .product-miniature .product-buttons .add-to-cart-button { - color: #ffffff; - border: solid 2px $cBlue; - background-color: $cBlue; - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; - height: 23px; + color: #ffffff; + border: solid 2px $cBlue; + background-color: $cBlue; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding-bottom: 4px; + height: 23px; } #products .product-buttons .add-to-cart-button i, .featured-products .product-buttons .add-to-cart-button i, .product-accessories .product-buttons .add-to-cart-button i, .product-miniature .product-buttons .add-to-cart-button i { - font-size: 0.85rem; - color: #ffffff; - margin-top: -15px; + font-size: 0.85rem; + color: #ffffff; + margin-top: -15px; } /* Flagi produktów */ @@ -544,338 +544,338 @@ featured-products .product-buttons a.product-show-more-link:hover, .product-miniature .product-miniature .online-only, .product-miniature .product-miniature .pack, .product-miniature .product-miniature .product-flags .new { - display: block; - position: absolute; - left: 4px; - padding: 1px; - padding-left: 4px; - padding-right: 4px; - color: #333; - background: #f3f3f3; - min-width: 2rem; - min-height: 1rem; - font-size: 0.8rem; - font-weight: 500; + display: block; + position: absolute; + left: 4px; + padding: 1px; + padding-left: 4px; + padding-right: 4px; + color: #333; + background: #f3f3f3; + min-width: 2rem; + min-height: 1rem; + font-size: 0.8rem; + font-weight: 500; } /** Strona z produktem ******************************************************************************/ /** Przewoznicy **/ section.sposoby-dostawy .row { - padding-bottom: 15px; + padding-bottom: 15px; } section.sposoby-dostawy .row.delivery-option { - padding-bottom: 0px; + padding-bottom: 0px; } section.sposoby-dostawy .row .col-md-2.col-xs-12 { - text-align: center; + text-align: center; } section.sposoby-dostawy .row .col-md-2.col-xs-12 img { - max-width: 70px; - margin-left: auto; - margin-right: auto; + max-width: 70px; + margin-left: auto; + margin-right: auto; } section.sposoby-dostawy .h6.carrier-name { - font-weight: 600; + font-weight: 600; } section.sposoby-dostawy .carrier-delay { - font-size: 1rem; - font-weight: 300; + font-size: 1rem; + font-weight: 300; } section.sposoby-dostawy .carrier-price { - font-weight: 700; + font-weight: 700; } /** Select wyboru producentów **************************/ @media (max-width: 479.9px) { - #search_filters_brands { - display: none; - } + #search_filters_brands { + display: none; + } } /** Rotator logotypów marek *****************************/ .brands-slider { - margin-top: 30px; + margin-top: 30px; } .brands-slider .nbs-flexisel-item { - padding-left: 15px; - padding-right: 15px; + padding-left: 15px; + padding-right: 15px; } .brands-slider .nbs-flexisel-item a img { - max-width: 60%; - width: 100%; - margoin-left: auto; - margin-right: auto; + max-width: 60%; + width: 100%; + margoin-left: auto; + margin-right: auto; } /** Składanie zamówienia *********************************/ @media (max-width: 479.9px) { - #onepagecheckoutps #customer_container .rowp { - display: flex; - } + #onepagecheckoutps #customer_container .rowp { + display: flex; + } - #onepagecheckoutps #customer_container .row, - #onepagecheckoutps - #customer_container - .row - .form-group.col-xs-6.col-6.required { - max-width: 110%; - width: 100%; - padding-right: 0px; - } + #onepagecheckoutps #customer_container .row, + #onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required { + max-width: 110%; + width: 100%; + padding-right: 0px; + } - #onepagecheckoutps .required::after { - display: none !important; - } + #onepagecheckoutps .required::after { + display: none !important; + } - #onepagecheckoutps - #onepagecheckoutps_step_two_container - .delivery_option_delay { - display: none; - } + #onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay { + display: none; + } - div#onepagecheckoutps - div#onepagecheckoutps_step_two - #shipping_container - .delivery_option_logo - img { - max-width: 50px; - } + div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img { + max-width: 50px; + } } /** Przycisk scrollowania do góry *******************************************/ #back-to-top { - position: fixed; - bottom: 60px; - right: 100px; - z-index: 99999; - width: 42px; - height: 42px; - text-align: center; - line-height: 42px; - background-color: #141414; - color: #ffffff; - cursor: pointer; - border: 0; - border-radius: 2px; - text-decoration: none; - opacity: 0; + position: fixed; + bottom: 60px; + right: 100px; + z-index: 99999; + width: 42px; + height: 42px; + text-align: center; + line-height: 42px; + background-color: #141414; + color: #ffffff; + cursor: pointer; + border: 0; + border-radius: 2px; + text-decoration: none; + opacity: 0; } #back-to-top:hover { - background-color: #ff4800; + background-color: #ff4800; } #back-to-top.show { - opacity: 1; + opacity: 1; } .product-quantity { - align-items: center; + align-items: center; - .certyfikat { - margin-left: 15px; - } + .certyfikat { + margin-left: 15px; + } } .sollux-custom-box { - margin-bottom: 30px; + margin-bottom: 30px; - img { - width: 100%; - max-width: fit-content; - } + img { + width: 100%; + max-width: fit-content; + } } body { - &#checkout { - main { - #main { - form { - .form-group { - &.required { - &::after { - display: none; - } - } - } - } - } - } - } + &#checkout { + main { + #main { + form { + .form-group { + &.required { + &::after { + display: none; + } + } + } + } + } + } + } } .product-add-to-card-button { - display: flex !important; - flex-direction: row; - align-items: center; - padding: 5px 10px 6px !important; - height: auto !important; - column-gap: 7px; - margin: 0 auto; + display: flex !important; + flex-direction: row; + align-items: center; + padding: 5px 10px 6px !important; + height: auto !important; + column-gap: 7px; + margin: 0 auto; - i.material-icons { - margin: 0 !important; - } - span { - font-size: 12px; - font-weight: 400; - color: #fff; - border-radius: 2px; - line-height: 1; - } + i.material-icons { + margin: 0 !important; + } + + span { + font-size: 12px; + font-weight: 400; + color: #fff; + border-radius: 2px; + line-height: 1; + } } article.product-miniature { - .product-description { - > a { - width: 100%; - } - } - .discount-amount.discount-amount, - .on-sale.on-sale, - .discount-percentage.discount-percentage { - background: #f14848 !important; - color: #fff; - left: 0; - } + .product-description { + >a { + width: 100%; + } + } + + .discount-amount.discount-amount, + .on-sale.on-sale, + .discount-percentage.discount-percentage { + background: #f14848 !important; + color: #fff; + left: 0; + } } #products, .featured-products, .product-accessories, .product-miniature { - .product-buttons { - .add-to-cart-button { - color: #ffffff; - border: solid 2px #218fff; - background-color: #218fff; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding: 4px; - display: flex; - text-align: center; - margin: 0 auto; - align-items: center; - justify-items: center; + .product-buttons { + .add-to-cart-button { + color: #ffffff; + border: solid 2px #218fff; + background-color: #218fff; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding: 4px; + display: flex; + text-align: center; + margin: 0 auto; + align-items: center; + justify-items: center; - &:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; - } + &:hover { + color: #ffffff; + border: solid 2px #112c50; + background-color: #112c50; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding-bottom: 4px; + } - i { - font-size: 0.85rem; - color: #ffffff; - margin-top: 1px; - } - } - } + i { + font-size: 0.85rem; + color: #ffffff; + margin-top: 1px; + } + } + } } .product-miniature { - .product-buttons { - .product-add-to-card-button { - font-size: 12px; + .product-buttons { + .product-add-to-card-button { + font-size: 12px; - i { - margin-top: -2px; - margin-right: 2px; - } - } - } + i { + margin-top: -2px; + margin-right: 2px; + } + } + } } #header .logo { - max-width: 115%; - width: 115%; - margin-top: -8px; - max-height: 93px; - object-fit: cover; + max-width: 115%; + width: 115%; + margin-top: -8px; + max-height: 93px; + object-fit: cover; } #header { - .header-nav { - .blockcart { - background: #218fff; - cursor: pointer; + .header-nav { + .blockcart { + background: #218fff; + cursor: pointer; - &:hover { - background: #112c50; - } + &:hover { + background: #112c50; + } - &.inactive { - .cart-products-count { - color: #fff; - } - } - } - } + &.inactive { + .cart-products-count { + color: #fff; + } + } + } + } } #header { - .header-top { - > .container { - > .row { - display: flex; - align-items: center; - flex-wrap: wrap; - } - } - } + .header-top { + >.container { + >.row { + display: flex; + align-items: center; + flex-wrap: wrap; + } + } + } } #_desktop_contact_link_temp { - display: none; + display: none; } #nav-phone-numb { - display: flex; - flex-direction: row; - align-items: center; - margin-left: 10px; - column-gap: 5px; - height: 50px; + display: flex; + flex-direction: row; + align-items: center; + margin-left: 10px; + column-gap: 5px; + height: 50px; - i { - font-size: 21px; - } + i { + font-size: 21px; + } - a { - color: #f57e20; - } + a { + color: #f57e20; + } } footer#footer { - @media (max-width: 767px) { - .footer-container { - .block-contact { - .hidden-sm-down { - display: block !important; - padding: 0.625rem; + @media (max-width: 767px) { + .footer-container { + .block-contact { + .hidden-sm-down { + display: block !important; + padding: 0.625rem; - .block-contact-title { - } - } + .block-contact-title {} + } - .hidden-md-up { - display: none !important; - } - } - } - } + .hidden-md-up { + display: none !important; + } + } + } + } } + +#history { + .table-labeled { + .label { + color: #232323 !important; + } + } +} \ No newline at end of file