2016-11-25 15:17:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* Twenty Seventeen integration styles
|
2016-11-25 15:25:37 +00:00
|
|
|
|
*/
|
2017-09-25 13:52:29 +00:00
|
|
|
|
@import 'mixins';
|
2016-11-25 15:25:37 +00:00
|
|
|
|
|
2016-11-25 16:10:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 12:47:04 +00:00
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'WooCommerce';
|
|
|
|
|
src: url('../fonts/WooCommerce.eot');
|
|
|
|
|
src: url('../fonts/WooCommerce.eot?#iefix') format('embedded-opentype'),
|
|
|
|
|
url('../fonts/WooCommerce.woff') format('woff'),
|
|
|
|
|
url('../fonts/WooCommerce.ttf') format('truetype'),
|
|
|
|
|
url('../fonts/WooCommerce.svg#WooCommerce') format('svg');
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-25 16:10:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* 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);
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transition: box-shadow ease-in-out 130ms;
|
2016-11-25 16:10:58 +00:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 17:50:20 +00:00
|
|
|
|
@mixin link_white() {
|
|
|
|
|
color: #fff;
|
|
|
|
|
box-shadow: 0 1px 0 rgba(#fff, 1) !important;
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transition: box-shadow ease-in-out 130ms;
|
2016-11-28 17:50:20 +00:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
box-shadow: 0 3px 0 rgba(#fff, 1) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-25 16:18:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* Global elements
|
|
|
|
|
*/
|
2017-09-25 13:52:29 +00:00
|
|
|
|
.woocommerce {
|
|
|
|
|
.blockUI.blockOverlay {
|
|
|
|
|
position: relative;
|
|
|
|
|
@include loader();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
|
@include loader();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-25 16:18:50 +00:00
|
|
|
|
.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;
|
2017-01-03 15:07:34 +00:00
|
|
|
|
display: block;
|
2016-11-25 16:34:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transition: background-color ease-in-out .3s;
|
2016-11-25 16:34:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2017-10-31 12:22:18 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
ins {
|
|
|
|
|
display: inline-block;
|
2016-11-25 16:34:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 12:47:04 +00:00
|
|
|
|
.required {
|
2016-11-28 13:26:02 +00:00
|
|
|
|
color: firebrick;
|
2016-11-28 17:54:43 +00:00
|
|
|
|
|
|
|
|
|
&[title] {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2016-11-28 13:26:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-message,
|
|
|
|
|
.woocommerce-error,
|
|
|
|
|
.woocommerce-info {
|
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
|
padding: 2em;
|
|
|
|
|
background: #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-message {
|
|
|
|
|
background: teal;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-error {
|
|
|
|
|
background: firebrick;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-info {
|
|
|
|
|
background: royalblue;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 17:50:20 +00:00
|
|
|
|
.woocommerce-message,
|
|
|
|
|
.woocommerce-error,
|
|
|
|
|
.woocommerce-info {
|
|
|
|
|
a {
|
|
|
|
|
@include link_white();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 13:26:02 +00:00
|
|
|
|
.woocommerce-store-notice {
|
|
|
|
|
background: royalblue;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-bar .woocommerce-store-notice {
|
|
|
|
|
top: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-store-notice__dismiss-link {
|
|
|
|
|
float: right;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2016-11-28 12:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 14:49:18 +00:00
|
|
|
|
a.remove {
|
|
|
|
|
display: inline-block;
|
2016-11-28 17:45:06 +00:00
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
font-size: 16px;
|
2016-11-28 14:49:18 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
border: 1px solid #000;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: #000;
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 12:46:22 +00:00
|
|
|
|
dl.variation, .wc-item-meta {
|
|
|
|
|
list-style: none outside;
|
|
|
|
|
|
|
|
|
|
dt, .wc-item-meta-label {
|
2016-11-28 14:49:18 +00:00
|
|
|
|
float: left;
|
|
|
|
|
clear: both;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
display: inline-block;
|
2017-02-28 12:46:22 +00:00
|
|
|
|
list-style: none outside;
|
2016-11-28 14:49:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2017-02-28 12:46:22 +00:00
|
|
|
|
|
|
|
|
|
p,
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2016-11-28 14:49:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
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:47:04 +00:00
|
|
|
|
|
|
|
|
|
.summary {
|
2016-11-28 15:28:12 +00:00
|
|
|
|
margin-bottom: 3em;
|
2016-11-28 13:12:17 +00:00
|
|
|
|
|
|
|
|
|
p.price {
|
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-rating {
|
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
|
|
.star-rating {
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form.cart {
|
|
|
|
|
.quantity {
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
width: 5em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-variation-add-to-cart {
|
|
|
|
|
.button {
|
|
|
|
|
padding-top: .72em;
|
|
|
|
|
padding-bottom: .72em;
|
|
|
|
|
}
|
2017-01-04 12:15:14 +00:00
|
|
|
|
.button.disabled {
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
}
|
2016-11-28 13:12:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.variations {
|
|
|
|
|
label {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
margin-right: .5em;
|
2016-11-28 12:47:04 +00:00
|
|
|
|
}
|
2016-11-28 12:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-gallery {
|
|
|
|
|
position: relative;
|
2016-11-28 15:28:12 +00:00
|
|
|
|
margin-bottom: 3em;
|
2016-11-28 12:33:46 +00:00
|
|
|
|
|
|
|
|
|
figure {
|
|
|
|
|
margin: 0;
|
2017-08-11 09:49:52 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-gallery__wrapper {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2016-11-28 12:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-19 09:44:56 +00:00
|
|
|
|
.zoomImg {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-27 15:34:50 +00:00
|
|
|
|
.woocommerce-product-gallery__image:nth-child(n+2) {
|
|
|
|
|
width: 25%;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 12:33:46 +00:00
|
|
|
|
.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%;
|
|
|
|
|
}
|
2017-05-10 17:35:02 +00:00
|
|
|
|
.flex-control-thumbs li:nth-child(3n+1) {
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
2016-11-28 12:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-4 {
|
|
|
|
|
.flex-control-thumbs li {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
2017-05-10 17:35:02 +00:00
|
|
|
|
.flex-control-thumbs li:nth-child(4n+1) {
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
2016-11-28 12:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-5 {
|
|
|
|
|
.flex-control-thumbs li {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
2017-05-10 17:35:02 +00:00
|
|
|
|
.flex-control-thumbs li:nth-child(5n+1) {
|
|
|
|
|
clear: left;
|
|
|
|
|
}
|
2016-11-28 12:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-product-gallery__trigger {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 1em;
|
|
|
|
|
right: 1em;
|
|
|
|
|
z-index: 99;
|
2016-11-28 12:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-tabs {
|
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
a {
|
|
|
|
|
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
@include link();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#comments {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-reply-title {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-size: 1.375rem;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
margin: 0 0 0.75em;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#reviews {
|
2016-11-29 10:34:37 +00:00
|
|
|
|
li.review,
|
2016-11-28 12:47:04 +00:00
|
|
|
|
li.comment {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-right: 0;
|
2016-11-29 10:34:37 +00:00
|
|
|
|
margin-bottom: 2.5em;
|
2016-11-28 12:47:04 +00:00
|
|
|
|
|
|
|
|
|
.avatar {
|
2016-11-28 13:32:26 +00:00
|
|
|
|
max-height: 36px;
|
|
|
|
|
width: auto;
|
2016-11-29 10:34:37 +00:00
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.meta {
|
|
|
|
|
margin-bottom: .5em;
|
2016-11-28 12:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.stars {
|
|
|
|
|
a {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 1em;
|
|
|
|
|
width: 1em;
|
|
|
|
|
text-indent: -999em;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
font-family: 'WooCommerce';
|
|
|
|
|
content: '\e021';
|
|
|
|
|
text-indent: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
~ a::before {
|
|
|
|
|
content: '\e021';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
a {
|
|
|
|
|
&::before {
|
|
|
|
|
content: '\e020';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
|
a.active {
|
|
|
|
|
&::before {
|
|
|
|
|
content: '\e020';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~ a::before {
|
|
|
|
|
content: '\e021';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:not( .active ) {
|
|
|
|
|
&::before {
|
|
|
|
|
content: '\e020';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-28 12:52:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 14:48:54 +00:00
|
|
|
|
/**
|
|
|
|
|
* Photoswipe
|
|
|
|
|
* 1. These styles are required to overwrite default theme button styles (Twenty Twelve adds gradients via background-image).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
button.pswp__button,
|
|
|
|
|
button.pswp__button:hover,
|
|
|
|
|
button.pswp__button--arrow--left::before,
|
|
|
|
|
button.pswp__button--arrow--right::before {
|
|
|
|
|
background-color: transparent !important; /* 1 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.pswp__button--close:hover {
|
|
|
|
|
background-position: 0 -44px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.pswp__button--zoom:hover {
|
|
|
|
|
background-position: -88px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-16 09:20:14 +00:00
|
|
|
|
.pswp img {
|
|
|
|
|
max-width: none;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 14:49:18 +00:00
|
|
|
|
/**
|
|
|
|
|
* Widgets
|
|
|
|
|
*/
|
2016-11-28 15:26:23 +00:00
|
|
|
|
.widget .product_list_widget,
|
|
|
|
|
.site-footer .widget .product_list_widget {
|
2016-11-28 14:49:18 +00:00
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
display: block;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
padding: 1.5em 0;
|
|
|
|
|
|
|
|
|
|
a.remove {
|
|
|
|
|
float: right;
|
2016-11-28 17:45:06 +00:00
|
|
|
|
margin-top: 2px;
|
2016-11-28 14:49:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget_shopping_cart {
|
|
|
|
|
.buttons {
|
|
|
|
|
a {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 14:52:43 +00:00
|
|
|
|
.widget_layered_nav {
|
|
|
|
|
.chosen {
|
|
|
|
|
&:before {
|
|
|
|
|
content: "×";
|
|
|
|
|
display: inline-block;
|
2016-11-28 17:45:06 +00:00
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
font-size: 16px;
|
2016-11-28 14:52:43 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 14:57:36 +00:00
|
|
|
|
.widget_price_filter {
|
|
|
|
|
.price_slider {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.price_slider_amount {
|
|
|
|
|
text-align: right;
|
|
|
|
|
line-height: 2.4;
|
|
|
|
|
font-size: 0.8751em;
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
float: left;
|
|
|
|
|
padding: .4em 1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider {
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
margin-right: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider .ui-slider-handle {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
border-radius: 1em;
|
|
|
|
|
cursor: ew-resize;
|
|
|
|
|
outline: none;
|
|
|
|
|
top: -0.3em;
|
|
|
|
|
margin-left: -0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider .ui-slider-range {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
font-size: 0.7em;
|
|
|
|
|
display: block;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 1em;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.price_slider_wrapper .ui-widget-content {
|
|
|
|
|
border-radius: 1em;
|
|
|
|
|
background-color: #666;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider-horizontal {
|
|
|
|
|
height: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider-horizontal .ui-slider-range {
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider-horizontal .ui-slider-range-min {
|
|
|
|
|
left: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-slider-horizontal .ui-slider-range-max {
|
|
|
|
|
right: -1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 15:01:14 +00:00
|
|
|
|
.widget_rating_filter {
|
|
|
|
|
li {
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
|
|
.star-rating {
|
|
|
|
|
float: left;
|
|
|
|
|
margin-top: .3em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 15:06:32 +00:00
|
|
|
|
.widget_product_search {
|
|
|
|
|
form {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-field {
|
|
|
|
|
padding-right: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=submit] {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: .5em;
|
|
|
|
|
right: .5em;
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
padding-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 11:37:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Account section
|
|
|
|
|
*/
|
|
|
|
|
.woocommerce-account {
|
|
|
|
|
.woocommerce-MyAccount-navigation {
|
|
|
|
|
float: right;
|
|
|
|
|
width: 25%;
|
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: .5em 0;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
content: "→";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
color: #ddd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.is-active {
|
|
|
|
|
a {
|
|
|
|
|
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-MyAccount-content {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 12:13:43 +00:00
|
|
|
|
/**
|
|
|
|
|
* Cart
|
|
|
|
|
*/
|
|
|
|
|
.woocommerce-cart-form {
|
|
|
|
|
td {
|
|
|
|
|
padding: 1em .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 42px;
|
|
|
|
|
height: auto;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dl.variation {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
|
|
|
|
p,
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
padding: 1.2em 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
.input-text {
|
|
|
|
|
width: 130px !important;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.quantity {
|
|
|
|
|
input {
|
|
|
|
|
width: 4em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-09 15:40:10 +00:00
|
|
|
|
#shipping_method {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-top: 1em;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
margin-bottom: .5em;
|
2017-01-27 15:34:50 +00:00
|
|
|
|
|
2017-01-09 15:40:10 +00:00
|
|
|
|
input {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 12:13:43 +00:00
|
|
|
|
.checkout-button {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 1em 2em;
|
|
|
|
|
border: 2px solid #000;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
border-color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
|
content: "→";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 13:17:15 +00:00
|
|
|
|
/**
|
|
|
|
|
* Checkout
|
|
|
|
|
*/
|
|
|
|
|
#ship-to-different-address {
|
|
|
|
|
label {
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 30px;
|
|
|
|
|
border: 2px solid #bbb;
|
|
|
|
|
background: #bbb;
|
|
|
|
|
border-radius: 13em;
|
|
|
|
|
box-sizing: content-box;
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transition: all ease-in-out .3s;
|
2016-11-29 13:17:15 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 4px;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background: white;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 7px;
|
|
|
|
|
right: 17px;
|
|
|
|
|
border-radius: 13em;
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transition: all ease-in-out .3s;
|
2016-11-29 13:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox]:checked + span:after {
|
|
|
|
|
right: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox]:checked + span:before {
|
|
|
|
|
border-color: #000;
|
|
|
|
|
background: #000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-17 15:18:23 +00:00
|
|
|
|
.woocommerce-terms-and-conditions {
|
|
|
|
|
border: 1px solid rgba(0,0,0,.2);
|
|
|
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
|
|
|
|
|
background: rgba(0,0,0,.05);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-29 13:17:15 +00:00
|
|
|
|
.woocommerce-checkout {
|
|
|
|
|
.select2-choice,
|
|
|
|
|
.select2-choice:hover {
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
}
|
|
|
|
|
.select2-choice {
|
|
|
|
|
padding: .7em 0 .7em .7em;
|
|
|
|
|
}
|
2017-07-12 14:39:12 +00:00
|
|
|
|
.select2-container .select2-selection--single {
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
.select2-container .select2-selection--single .select2-selection__rendered {
|
|
|
|
|
line-height: 48px;
|
|
|
|
|
}
|
|
|
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
|
|
|
height: 46px;
|
|
|
|
|
}
|
|
|
|
|
.select2-container--focus .select2-selection {
|
|
|
|
|
border-color: black;
|
|
|
|
|
}
|
2016-11-29 13:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.woocommerce-checkout-review-order-table {
|
|
|
|
|
td {
|
|
|
|
|
padding: 1em .5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dl.variation {
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wc_payment_method {
|
|
|
|
|
list-style: none;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
|
|
|
|
|
.payment_box {
|
|
|
|
|
padding: 2em;
|
|
|
|
|
background: #eee;
|
|
|
|
|
|
|
|
|
|
ul,
|
|
|
|
|
ol {
|
|
|
|
|
&:last-of-type {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
|
padding: 1.5em;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
background: #f6f6f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> label:first-of-type {
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-height: 24px;
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-09 13:47:07 +00:00
|
|
|
|
input.input-radio[name=payment_method] {
|
2016-11-29 13:17:15 +00:00
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
|
|
& + label {
|
|
|
|
|
&:before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
box-shadow: 0 0 0 2px black;
|
|
|
|
|
background: white;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
margin-right: .5em;
|
|
|
|
|
border-radius: 100%;
|
2017-05-05 13:32:13 +00:00
|
|
|
|
transform: translateY(2px);
|
2016-11-29 13:17:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:checked + label {
|
|
|
|
|
&:before {
|
|
|
|
|
background: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-05 20:43:13 +00:00
|
|
|
|
.colors-dark {
|
2017-08-02 15:41:53 +00:00
|
|
|
|
.page-numbers {
|
|
|
|
|
color: #444;
|
|
|
|
|
|
|
|
|
|
&.next, &.prev {
|
|
|
|
|
color: #ddd;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-05 20:43:13 +00:00
|
|
|
|
.checkout-button {
|
|
|
|
|
border: 2px solid #555;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-17 12:09:20 +00:00
|
|
|
|
.wc_payment_method {
|
|
|
|
|
.payment_box {
|
|
|
|
|
background: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-05 20:43:13 +00:00
|
|
|
|
|
2017-04-17 12:09:20 +00:00
|
|
|
|
.select2-container--default {
|
|
|
|
|
.select2-results {
|
|
|
|
|
.select2-results__options {
|
|
|
|
|
background:#333;
|
|
|
|
|
}
|
2017-06-26 19:44:33 +00:00
|
|
|
|
.select2-results__option[data-selected="true"]{
|
2017-04-17 12:09:20 +00:00
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-05 20:43:13 +00:00
|
|
|
|
|
2017-04-17 12:09:20 +00:00
|
|
|
|
.select2-selection--single {
|
|
|
|
|
background-color: #333;
|
|
|
|
|
border: 1px solid #555;
|
|
|
|
|
|
|
|
|
|
.select2-selection__rendered {
|
|
|
|
|
color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-13 13:56:07 +00:00
|
|
|
|
|
|
|
|
|
.select2-container--focus .select2-selection {
|
|
|
|
|
border-color: white;
|
|
|
|
|
}
|
2017-04-17 12:09:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 12:52:18 +00:00
|
|
|
|
/**
|
|
|
|
|
* Layout stuff
|
|
|
|
|
*/
|
|
|
|
|
@media screen and (min-width: 48em) {
|
|
|
|
|
.has-sidebar.woocommerce-page:not(.error404) {
|
|
|
|
|
#primary {
|
|
|
|
|
width: 74%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#secondary {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-29 11:37:40 +00:00
|
|
|
|
|
|
|
|
|
body.page-two-column.woocommerce-cart:not(.archive) #primary .entry-header,
|
|
|
|
|
body.page-two-column.woocommerce-checkout:not(.archive) #primary .entry-header,
|
|
|
|
|
body.page-two-column.woocommerce-account:not(.archive) #primary .entry-header {
|
|
|
|
|
width: 16%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.page-two-column.woocommerce-cart:not(.archive) #primary .entry-content,
|
|
|
|
|
body.page-two-column.woocommerce-checkout:not(.archive) #primary .entry-content,
|
|
|
|
|
body.page-two-column.woocommerce-account:not(.archive) #primary .entry-content {
|
|
|
|
|
width: 78%;
|
|
|
|
|
}
|
2017-01-03 15:07:34 +00:00
|
|
|
|
}
|