Uploaded the files.
This commit is contained in:
commit
37661b3ee7
374 changed files with 90632 additions and 0 deletions
30
css/accountbtn.css
Normal file
30
css/accountbtn.css
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
|
||||
.dropdownn {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dropdownn-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #15161D;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.dropdownn-content a {
|
||||
color: black;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.dropdownn-content a:hover {background-color: #15161D}
|
||||
|
||||
.dropdownn:hover .dropdownn-content {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
6
css/bootstrap.min.css
vendored
Normal file
6
css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4
css/font-awesome.min.css
vendored
Normal file
4
css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
css/login_reg.css
Normal file
1
css/login_reg.css
Normal file
File diff suppressed because one or more lines are too long
358
css/myorders.css
Normal file
358
css/myorders.css
Normal file
|
@ -0,0 +1,358 @@
|
|||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.cf:before, .cf:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.cf:after {
|
||||
clear: both;
|
||||
}
|
||||
.cf {
|
||||
*zoom: 1;
|
||||
}
|
||||
.wrap {
|
||||
width: 75%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 5% 0;
|
||||
margin-bottom: 5em;
|
||||
}
|
||||
.projTitle {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
padding: 1em 0;
|
||||
border-bottom: 1px solid #dadada;
|
||||
letter-spacing: 3px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.projTitle span {
|
||||
font-family: 'Droid Serif', serif;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
text-transform: lowercase;
|
||||
color: #777;
|
||||
}
|
||||
.heading {
|
||||
padding: 1em 0;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
}
|
||||
.heading h1 {
|
||||
font-family: 'Droid Serif', serif;
|
||||
font-size: 2em;
|
||||
float: left;
|
||||
}
|
||||
.heading a.continue:link, .heading a.continue:visited {
|
||||
text-decoration: none;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
letter-spacing: -0.015em;
|
||||
font-size: 0.75em;
|
||||
padding: 1em;
|
||||
color: #fff;
|
||||
background: #82ca9c;
|
||||
font-weight: bold;
|
||||
border-radius: 50px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
-webkit-transition: all 0.25s linear;
|
||||
-moz-transition: all 0.25s linear;
|
||||
-ms-transition: all 0.25s linear;
|
||||
-o-transition: all 0.25s linear;
|
||||
transition: all 0.25s linear;
|
||||
}
|
||||
.heading a.continue:after {
|
||||
content: "\276f";
|
||||
padding: 0.5em;
|
||||
position: relative;
|
||||
right: 0;
|
||||
-webkit-transition: all 0.15s linear;
|
||||
-moz-transition: all 0.15s linear;
|
||||
-ms-transition: all 0.15s linear;
|
||||
-o-transition: all 0.15s linear;
|
||||
transition: all 0.15s linear;
|
||||
}
|
||||
.heading a.continue:hover, .heading a.continue:focus, .heading a.continue:active {
|
||||
background: #f69679;
|
||||
}
|
||||
.heading a.continue:hover:after, .heading a.continue:focus:after, .heading a.continue:active:after {
|
||||
right: -10px;
|
||||
}
|
||||
.tableHead {
|
||||
display: table;
|
||||
width: 100%;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 0.75em;
|
||||
}
|
||||
.tableHead li {
|
||||
display: table-cell;
|
||||
padding: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
.tableHead li.prodHeader {
|
||||
text-align: left;
|
||||
}
|
||||
.cart {
|
||||
padding: 1em 0;
|
||||
}
|
||||
.cart .items {
|
||||
display: block;
|
||||
width: 100%;
|
||||
vertical-align: middle;
|
||||
padding: 1.5em;
|
||||
border-bottom: 1px solid #fafafa;
|
||||
}
|
||||
.cart .items.even {
|
||||
background: #d2ebf7;
|
||||
}
|
||||
.cart .items .infoWrap {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
.cart .items .cartSection {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.cart .items .cartSection .itemNumber {
|
||||
font-size: 0.75em;
|
||||
color: #777;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
.cart .items .cartSection h3 {
|
||||
font-size: 1em;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.025em;
|
||||
}
|
||||
.cart .items .cartSection p {
|
||||
display: inline-block;
|
||||
font-size: 0.85em;
|
||||
color: #777;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
.cart .items .cartSection p .quantity {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
.cart .items .cartSection p.stockStatus {
|
||||
color: #82ca9c;
|
||||
font-weight: bold;
|
||||
padding: 0.5em 0 0 1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.cart .items .cartSection p.stockStatus.out {
|
||||
color: #f69679;
|
||||
}
|
||||
.cart .items .cartSection .itemImg {
|
||||
width: 4em;
|
||||
float: left;
|
||||
}
|
||||
.cart .items .cartSection.qtyWrap, .cart .items .cartSection.prodTotal {
|
||||
text-align: center;
|
||||
}
|
||||
.cart .items .cartSection.qtyWrap p, .cart .items .cartSection.prodTotal p {
|
||||
font-weight: bold;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
.cart .items .cartSection input.qty {
|
||||
width: 2em;
|
||||
text-align: center;
|
||||
font-size: 1em;
|
||||
padding: 0.25em;
|
||||
margin: 1em 0.5em 0 0;
|
||||
}
|
||||
.cart .items .cartSection .itemImg {
|
||||
width: 8em;
|
||||
display: inline;
|
||||
padding-right: 1em;
|
||||
}
|
||||
.special {
|
||||
display: block;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
.special .specialContent {
|
||||
padding: 1em 1em 0;
|
||||
display: block;
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #dadada;
|
||||
}
|
||||
.special .specialContent:before {
|
||||
content: "\21b3";
|
||||
font-size: 1.5em;
|
||||
margin-right: 1em;
|
||||
color: #6f6f6f;
|
||||
font-family: helvetica, arial, sans-serif;
|
||||
}
|
||||
a.remove {
|
||||
text-decoration: none;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
color: rgb(247, 243, 243);
|
||||
font-weight: bold;
|
||||
background: #0e0b0b;
|
||||
padding: 0.5em;
|
||||
font-size: 0.75em;
|
||||
display: inline-block;
|
||||
border-radius: 100%;
|
||||
line-height: 0.85;
|
||||
-webkit-transition: all 0.25s linear;
|
||||
-moz-transition: all 0.25s linear;
|
||||
-ms-transition: all 0.25s linear;
|
||||
-o-transition: all 0.25s linear;
|
||||
transition: all 0.25s linear;
|
||||
}
|
||||
a.remove:hover {
|
||||
background: #f30;
|
||||
}
|
||||
.promoCode {
|
||||
border: 2px solid #efefef;
|
||||
float: left;
|
||||
width: 35%;
|
||||
padding: 2%;
|
||||
}
|
||||
.promoCode label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-style: italic;
|
||||
font-size: 1.15em;
|
||||
margin-bottom: 0.5em;
|
||||
letter-spacing: -0.025em;
|
||||
}
|
||||
.promoCode input {
|
||||
width: 85%;
|
||||
font-size: 1em;
|
||||
padding: 0.5em;
|
||||
float: left;
|
||||
border: 1px solid #dadada;
|
||||
}
|
||||
.promoCode input:active, .promoCode input:focus {
|
||||
outline: 0;
|
||||
}
|
||||
.promoCode a.btn {
|
||||
float: left;
|
||||
width: 15%;
|
||||
padding: 0.75em 0;
|
||||
border-radius: 0 1em 1em 0;
|
||||
text-align: center;
|
||||
border: 1px solid #82ca9c;
|
||||
}
|
||||
.promoCode a.btn:hover {
|
||||
border: 1px solid #f69679;
|
||||
background: #f69679;
|
||||
}
|
||||
.btn:link, .btn:visited {
|
||||
text-decoration: none;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
letter-spacing: -0.015em;
|
||||
font-size: 1em;
|
||||
padding: 1em 3em;
|
||||
color: #fff;
|
||||
background: #82ca9c;
|
||||
font-weight: bold;
|
||||
border-radius: 50px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
-webkit-transition: all 0.25s linear;
|
||||
-moz-transition: all 0.25s linear;
|
||||
-ms-transition: all 0.25s linear;
|
||||
-o-transition: all 0.25s linear;
|
||||
transition: all 0.25s linear;
|
||||
}
|
||||
.btn:after {
|
||||
content: "\276f";
|
||||
padding: 0.5em;
|
||||
position: relative;
|
||||
right: 0;
|
||||
-webkit-transition: all 0.15s linear;
|
||||
-moz-transition: all 0.15s linear;
|
||||
-ms-transition: all 0.15s linear;
|
||||
-o-transition: all 0.15s linear;
|
||||
transition: all 0.15s linear;
|
||||
}
|
||||
.btn:hover, .btn:focus, .btn:active {
|
||||
background: #f69679;
|
||||
}
|
||||
.btn:hover:after, .btn:focus:after, .btn:active:after {
|
||||
right: -10px;
|
||||
}
|
||||
.promoCode .btn {
|
||||
font-size: 0.85em;
|
||||
padding: 0.5em 2em;
|
||||
}
|
||||
/* TOTAL AND CHECKOUT */
|
||||
.subtotal {
|
||||
margin-left: 60%;
|
||||
display: block;
|
||||
width: 35%;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.subtotal .totalRow {
|
||||
padding: 0.5em;
|
||||
text-align: right;
|
||||
}
|
||||
.subtotal .totalRow.final {
|
||||
font-size: 1.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.subtotal .totalRow span {
|
||||
display: inline-block;
|
||||
padding: 0 0 0 1em;
|
||||
text-align: right;
|
||||
}
|
||||
.subtotal .totalRow .label {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 0.85em;
|
||||
text-transform: uppercase;
|
||||
color: #777;
|
||||
}
|
||||
.subtotal .totalRow .value {
|
||||
letter-spacing: -0.025em;
|
||||
width: 35%;
|
||||
}
|
||||
@media only screen and (max-width: 39.375em) {
|
||||
.wrap {
|
||||
width: 98%;
|
||||
padding: 2% 0;
|
||||
}
|
||||
.projTitle {
|
||||
font-size: 1.5em;
|
||||
padding: 10% 5%;
|
||||
}
|
||||
.heading {
|
||||
padding: 1em;
|
||||
font-size: 90%;
|
||||
}
|
||||
.cart .items .cartSection {
|
||||
width: 90%;
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
.cart .items .cartSection.qtyWrap {
|
||||
width: 10%;
|
||||
text-align: center;
|
||||
padding: 0.5em 0;
|
||||
float: right;
|
||||
}
|
||||
.cart .items .cartSection.qtyWrap:before {
|
||||
content: "QTY";
|
||||
display: block;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
padding: 0.25em;
|
||||
font-size: 0.75em;
|
||||
}
|
||||
.cart .items .cartSection.prodTotal, .cart .items .cartSection.removeWrap {
|
||||
display: none;
|
||||
}
|
||||
.cart .items .cartSection .itemImg {
|
||||
width: 25%;
|
||||
}
|
||||
.promoCode, .subtotal {
|
||||
width: 100%;
|
||||
}
|
||||
a.btn.continue {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
1
css/nouislider.min.css
vendored
Normal file
1
css/nouislider.min.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/*! nouislider - 10.0.0 - 2017-05-28 14:52:48 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-connect{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-origin{position:absolute;height:0;width:0}.noUi-handle{position:relative;z-index:1}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:top .3s,right .3s,bottom .3s,left .3s;transition:top .3s,right .3s,bottom .3s,left .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base,.noUi-handle{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connect{background:#3FB8AF;border-radius:4px;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);padding-left:25px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}
|
204
css/slick-theme.css
Normal file
204
css/slick-theme.css
Normal file
|
@ -0,0 +1,204 @@
|
|||
@charset 'UTF-8';
|
||||
/* Slider */
|
||||
.slick-loading .slick-list
|
||||
{
|
||||
background: #fff url('./ajax-loader.gif') center center no-repeat;
|
||||
}
|
||||
|
||||
/* Icons */
|
||||
@font-face
|
||||
{
|
||||
font-family: 'slick';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
src: url('./fonts/slick.eot');
|
||||
src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
|
||||
}
|
||||
/* Arrows */
|
||||
.slick-prev,
|
||||
.slick-next
|
||||
{
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
|
||||
display: block;
|
||||
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 0;
|
||||
-webkit-transform: translate(0, -50%);
|
||||
-ms-transform: translate(0, -50%);
|
||||
transform: translate(0, -50%);
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
color: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
}
|
||||
.slick-prev:hover,
|
||||
.slick-prev:focus,
|
||||
.slick-next:hover,
|
||||
.slick-next:focus
|
||||
{
|
||||
color: transparent;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
}
|
||||
.slick-prev:hover:before,
|
||||
.slick-prev:focus:before,
|
||||
.slick-next:hover:before,
|
||||
.slick-next:focus:before
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
.slick-prev.slick-disabled:before,
|
||||
.slick-next.slick-disabled:before
|
||||
{
|
||||
opacity: .25;
|
||||
}
|
||||
|
||||
.slick-prev:before,
|
||||
.slick-next:before
|
||||
{
|
||||
font-family: 'slick';
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
|
||||
opacity: .75;
|
||||
color: white;
|
||||
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.slick-prev
|
||||
{
|
||||
left: -25px;
|
||||
}
|
||||
[dir='rtl'] .slick-prev
|
||||
{
|
||||
right: -25px;
|
||||
left: auto;
|
||||
}
|
||||
.slick-prev:before
|
||||
{
|
||||
content: '←';
|
||||
}
|
||||
[dir='rtl'] .slick-prev:before
|
||||
{
|
||||
content: '→';
|
||||
}
|
||||
|
||||
.slick-next
|
||||
{
|
||||
right: -25px;
|
||||
}
|
||||
[dir='rtl'] .slick-next
|
||||
{
|
||||
right: auto;
|
||||
left: -25px;
|
||||
}
|
||||
.slick-next:before
|
||||
{
|
||||
content: '→';
|
||||
}
|
||||
[dir='rtl'] .slick-next:before
|
||||
{
|
||||
content: '←';
|
||||
}
|
||||
|
||||
/* Dots */
|
||||
.slick-dotted.slick-slider
|
||||
{
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.slick-dots
|
||||
{
|
||||
position: absolute;
|
||||
bottom: -25px;
|
||||
|
||||
display: block;
|
||||
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
list-style: none;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
.slick-dots li
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: inline-block;
|
||||
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 0 5px;
|
||||
padding: 0;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
.slick-dots li button
|
||||
{
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
|
||||
display: block;
|
||||
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 5px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
color: transparent;
|
||||
border: 0;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
}
|
||||
.slick-dots li button:hover,
|
||||
.slick-dots li button:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
.slick-dots li button:hover:before,
|
||||
.slick-dots li button:focus:before
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
.slick-dots li button:before
|
||||
{
|
||||
font-family: 'slick';
|
||||
font-size: 6px;
|
||||
line-height: 20px;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
|
||||
content: '•';
|
||||
text-align: center;
|
||||
|
||||
opacity: .25;
|
||||
color: black;
|
||||
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.slick-dots li.slick-active button:before
|
||||
{
|
||||
opacity: .75;
|
||||
color: black;
|
||||
}
|
119
css/slick.css
Normal file
119
css/slick.css
Normal file
|
@ -0,0 +1,119 @@
|
|||
/* Slider */
|
||||
.slick-slider
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
-webkit-touch-callout: none;
|
||||
-khtml-user-select: none;
|
||||
-ms-touch-action: pan-y;
|
||||
touch-action: pan-y;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.slick-list
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.slick-list:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
.slick-list.dragging
|
||||
{
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.slick-slider .slick-track,
|
||||
.slick-slider .slick-list
|
||||
{
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
-o-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
.slick-track
|
||||
{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.slick-track:before,
|
||||
.slick-track:after
|
||||
{
|
||||
display: table;
|
||||
|
||||
content: '';
|
||||
}
|
||||
.slick-track:after
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
.slick-loading .slick-track
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.slick-slide
|
||||
{
|
||||
display: none;
|
||||
float: left;
|
||||
|
||||
height: 100%;
|
||||
min-height: 1px;
|
||||
}
|
||||
[dir='rtl'] .slick-slide
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.slick-slide img
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.slick-slide.slick-loading img
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.slick-slide.dragging img
|
||||
{
|
||||
pointer-events: none;
|
||||
}
|
||||
.slick-initialized .slick-slide
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.slick-loading .slick-slide
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
.slick-vertical .slick-slide
|
||||
{
|
||||
display: block;
|
||||
|
||||
height: auto;
|
||||
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.slick-arrow.slick-hidden {
|
||||
display: none;
|
||||
}
|
2379
css/style.css
Normal file
2379
css/style.css
Normal file
File diff suppressed because it is too large
Load diff
1
css/utils.css
Normal file
1
css/utils.css
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue