Initial commit

This commit is contained in:
2019-11-20 07:44:43 +01:00
commit 5bf49c4a81
41188 changed files with 5459177 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-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-2018 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
}
.addons-title {
margin: 1em 0;
padding-left: 20px;
/* background-color: #e8faff; */
border-left: 4px solid #2eacce;
font-size: 18px !important;
text-decoration: underline;
}
.addons-number-fields {
display: block;
width: 22%;
height: 31px;
padding: 6px 8px;
font-size: 12px;
line-height: 1.42857;
color: #555;
background-color: #F5F8F9;
background-image: none;
border: 1px solid #C7D6DB;
border-radius: 3px;
-webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
-o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s
}
.addons-inline-block {
display: inline-block;
}
.addons-text {
padding: 14px;
font-size: 13px;
}
.addons-hide {
display: none;
}
.title {
padding-bottom: 10px;
}
.labelbutton {
padding-right: 15px;
}
.divcolorpicker {
margin-left: -15px;
}
.panel-footer {
margin-top: 125px !important;
}

View File

@@ -0,0 +1,79 @@
#faq span.faq-h1 {
font-size: 16px;
font-weight: bold;
display: block;
margin-bottom: 10px;
}
#faq span.faq-h2 {
font-size: 14px;
display: block;
cursor: pointer;
}
#faq span.faq-h2:hover {
color: #25B9D7;
}
#faq span.faq-h2.faq-open {
color: #25B9D7;
font-weight: bold;
}
#faq span.faq-h2 i {
font-size: 13px;
margin-right: 2px;
}
#faq > ul {
list-style: none;
}
#faq > ul > li {
list-style: none;
padding: 5px
}
#faq .faq-text {
padding: 15px 15px;
background: #f7f7f7;
margin: 10px 0;
}
.helpContentParent {
overflow:hidden;
}
.helpContentLeft {
float:left;
width:30%;
border-right:1px solid #555;
overflow:hidden;
}
.helpContentLeft > .left {
float:left;
width:20%;
}
.helpContentLeft > .right {
float:left;
width:66%;
text-align: justify;
text-justify: inter-word;
}
.helpContentRight {
float:right;
width:70%;
/*border-left:1px solid #16222c;*/
}
.helpContentRight-sub{
margin-left:50px;
}
.numberCircle {
border-radius: 50%;
float:left;
margin-right: 10px;
width: 20px;
height: 20px;
/*padding: 8px;*/
background: #fff;
border: 2px solid #666;
color: #555;
text-align: center;
font: 14px Arial, sans-serif;
}
.numberCircleText {
margin-left: 30px;
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,35 @@
<?php
/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-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-2018 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 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;