first commit

This commit is contained in:
2024-10-28 22:14:22 +01:00
commit b65352c452
40581 changed files with 5712079 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2019 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,150 @@
/**
* 2017-2019 Zemez
*
* JX Deal of Day
*
* NOTICE OF LICENSE
*
* This source file is subject to the General Public License (GPL 2.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/GPL-2.0
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade the module to newer
* versions in the future.
*
* @author Zemez (Sergiy Sakun)
* @copyright 2017-2019 Zemez
* @license http://opensource.org/licenses/GPL-2.0 General Public License (GPL 2.0)
*/
.daydeal-box {
padding: 10px 5px;
font-size: 12px;
line-height: 1;
color: $black;
text-align: center;
font-weight: normal;
background: $brand-primary-lighten;
h3 {
display: none;
}
> div {
display: flex;
justify-content: center;
> span {
font-weight: 300;
font-size: 13px;
line-height: 1.3;
font-family: $font-family-base;
text-align: center;
min-width: 43px;
> span {
display: block;
font-size: 16px;
letter-spacing: $letter-spacing-xs;
}
+ span {
margin-left: 5px;
}
}
}
@include media-breakpoint-up(md) {
padding: 10px 5px;
min-width: 40px;
> div > span {
> span {
font-size: 18px;
}
+ span {
margin-left: 10px;
}
}
}
@include media-breakpoint-up(lg){
padding: 15px 5px;
}
@include media-breakpoint-up(xl) {
padding: 25px 5px;
> div > span {
min-width: 43px;
> span {
font-size: 26px;
}
+ span {
margin-left: 15px;
}
}
}
@include media-breakpoint-up(xxl) {
> div > span {
> span {
letter-spacing: $letter-spacing-1;
}
+ span {
margin-left: 25px;
}
}
}
}
.daydeal-products {
.label-discount-wrap {
overflow: hidden;
padding-bottom: 27px;
.label-daydeal, .discount-daydeal {
display: block;
float: left;
padding: 0 5px;
background: $brand-primary;
font-size: 12px;
line-height: 28px;
text-transform: uppercase;
min-width: 47px;
text-align: center;
color: white;
}
.discount-daydeal {
background: $brand-danger;
}
@include media-breakpoint-between(lg, xl) {
padding-bottom: 10px;
}
@include media-breakpoint-only(md) {
padding-bottom: 5px;
.label-daydeal, .discount-daydeal {
padding: 0 5px;
font-size: 10px;
line-height: 17px;
min-width: 0;
}
}
@include media-breakpoint-down(sm) {
padding-bottom: 5px;
.label-daydeal, .discount-daydeal {
padding: 0 5px;
font-size: 8px;
line-height: 12px;
min-width: 0;
}
}
}
@include media-breakpoint-up(xxl) {
.product-miniature .product-miniature-container .product-miniature-information .product-description-short {
margin-bottom: 30px;
}
}
}