2016-11-25 15:17:13 +00:00
|
|
|
/**
|
|
|
|
* Twenty Seventeen integration styles
|
2016-11-25 15:25:37 +00:00
|
|
|
*/
|
|
|
|
|
2016-11-25 16:10:58 +00:00
|
|
|
@import 'bourbon';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fonts
|
|
|
|
*/
|
|
|
|
@font-face {
|
|
|
|
font-family: 'star';
|
|
|
|
src: url('../fonts/star.eot');
|
|
|
|
src: url('../fonts/star.eot?#iefix') format('embedded-opentype'),
|
|
|
|
url('../fonts/star.woff') format('woff'),
|
|
|
|
url('../fonts/star.ttf') format('truetype'),
|
|
|
|
url('../fonts/star.svg#star') format('svg');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mixins
|
|
|
|
*/
|
2016-11-25 16:14:57 +00:00
|
|
|
@mixin link() {
|
2016-11-25 16:10:58 +00:00
|
|
|
box-shadow: 0 1px 0 rgba(15, 15, 15, 1);
|
|
|
|
@include transition( box-shadow ease-in-out 130ms );
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:18:50 +00:00
|
|
|
/**
|
|
|
|
* Global elements
|
|
|
|
*/
|
|
|
|
.woocommerce-breadcrumb {
|
|
|
|
padding-bottom: 2em;
|
|
|
|
margin-bottom: 4em;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include link();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:34:30 +00:00
|
|
|
.woocommerce-pagination {
|
|
|
|
padding-top: 2em;
|
|
|
|
margin-top: 4em;
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
|
|
|
ul.page-numbers {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.page-numbers,
|
|
|
|
a.page-numbers,
|
|
|
|
.next.page-numbers,
|
|
|
|
.prev.page-numbers {
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
background: #ddd;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1em;
|
|
|
|
float: none;
|
|
|
|
line-height: 1.5;
|
|
|
|
border-radius: 2px;
|
|
|
|
@include transition( background-color ease-in-out .3s );
|
|
|
|
}
|
|
|
|
|
|
|
|
span.page-numbers {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.page-numbers:hover {
|
|
|
|
background-color: #767676;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onsale {
|
|
|
|
background-color: #fff;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
padding: .5em 1em;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
|
|
|
|
.price {
|
|
|
|
del {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:10:58 +00:00
|
|
|
/**
|
|
|
|
* Shop page
|
|
|
|
*/
|
|
|
|
.woocommerce-result-count {
|
|
|
|
padding: .75em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Products
|
|
|
|
*/
|
|
|
|
ul.products {
|
|
|
|
li.product {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
.price,
|
|
|
|
.star-rating {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: .75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2016-11-25 16:14:57 +00:00
|
|
|
@include link();
|
2016-11-25 16:10:58 +00:00
|
|
|
|
|
|
|
&.loading {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.added_to_cart {
|
2016-11-25 16:14:57 +00:00
|
|
|
@include link();
|
2016-11-25 16:10:58 +00:00
|
|
|
margin-left: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-rating {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
height: 1em;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: 1em;
|
|
|
|
width: 5.4em;
|
|
|
|
font-family: 'star';
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '\73\73\73\73\73';
|
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
padding-top: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
span::before {
|
|
|
|
content: '\53\53\53\53\53';
|
|
|
|
top: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-loop-product__title {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 800;
|
|
|
|
letter-spacing: 0.15em;
|
2016-11-25 16:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Single product
|
|
|
|
*/
|
|
|
|
.single-product {
|
|
|
|
div.product {
|
|
|
|
position: relative;
|
|
|
|
}
|
2016-11-28 12:14:15 +00:00
|
|
|
|
|
|
|
.single-featured-image-header {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-11-28 12:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-control-thumbs {
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
float: left;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
opacity: .5;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.flex-active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-3 {
|
|
|
|
.flex-control-thumbs li {
|
|
|
|
width: 33.3333%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-4 {
|
|
|
|
.flex-control-thumbs li {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-5 {
|
|
|
|
.flex-control-thumbs li {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery__trigger {
|
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
right: 1em;
|
|
|
|
z-index: 99;
|
2016-11-25 16:10:58 +00:00
|
|
|
}
|