2017-08-01 13:21:13 +00:00
|
|
|
/*
|
|
|
|
Theme Name: _s
|
|
|
|
|
|
|
|
WooCommerce styles override
|
|
|
|
*/
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-01 13:21:13 +00:00
|
|
|
/**
|
|
|
|
* Shop tables
|
|
|
|
*/
|
|
|
|
table.shop_table_responsive thead {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
table.shop_table_responsive tbody th {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
table.shop_table_responsive tr td {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
table.shop_table_responsive tr td::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: attr(data-title) ": ";
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.shop_table_responsive tr td.product-remove a {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
table.shop_table_responsive tr td.product-remove::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
table.shop_table_responsive tr td.actions::before,
|
|
|
|
table.shop_table_responsive tr td.download-actions::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.shop_table_responsive tr td.download-actions .button {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
@media screen and (min-width: 48em) {
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
table.shop_table_responsive thead {
|
|
|
|
display: table-header-group;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
table.shop_table_responsive tbody th {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
|
|
|
table.shop_table_responsive tr th,
|
|
|
|
table.shop_table_responsive tr td {
|
2017-08-30 11:14:55 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
table.shop_table_responsive tr td {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
|
|
|
table.shop_table_responsive tr td::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Products
|
|
|
|
*/
|
|
|
|
ul.products {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.products li.product {
|
|
|
|
list-style: none;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.products li.product .woocommerce-loop-product__title {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.products li.product img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.products li.product .button {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
@media screen and (min-width: 48em) {
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
ul.products li.product {
|
2020-04-08 21:36:58 +00:00
|
|
|
width: 30.79667%;
|
2017-08-30 11:14:55 +00:00
|
|
|
float: left;
|
|
|
|
margin-right: 3.8%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
ul.products li.product.first {
|
|
|
|
clear: both;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
ul.products li.product.last {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-1 li.product {
|
2017-08-30 11:14:55 +00:00
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-2 li.product {
|
2017-08-30 11:14:55 +00:00
|
|
|
width: 48.1%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-3 li.product {
|
2020-04-08 21:36:58 +00:00
|
|
|
width: 30.79667%;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-4 li.product {
|
2017-08-30 11:14:55 +00:00
|
|
|
width: 22.15%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-5 li.product {
|
2017-08-30 11:14:55 +00:00
|
|
|
width: 16.96%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2020-04-09 20:04:25 +00:00
|
|
|
ul.products.columns-6 li.product {
|
2020-04-08 21:36:58 +00:00
|
|
|
width: 13.49333%;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Single product
|
|
|
|
*/
|
|
|
|
.single-product div.product {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
|
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
right: 1em;
|
|
|
|
display: block;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-viewport {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
|
|
|
|
list-style: none;
|
|
|
|
cursor: pointer;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
|
2020-04-08 21:36:58 +00:00
|
|
|
opacity: 0.5;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
|
|
|
|
width: 48.1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
|
2020-04-08 21:36:58 +00:00
|
|
|
width: 30.79667%;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
|
|
|
|
width: 22.15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
|
|
|
|
width: 16.96%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
.stock:empty::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.stock.in-stock {
|
2017-08-30 11:14:55 +00:00
|
|
|
color: #0f834d;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.stock.out-of-stock {
|
2017-08-30 11:14:55 +00:00
|
|
|
color: #e2401c;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkout
|
|
|
|
*/
|
|
|
|
@media screen and (min-width: 768px) {
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
.col2-set .form-row-first {
|
|
|
|
float: left;
|
|
|
|
margin-right: 3.8%;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
.col2-set .form-row-last {
|
|
|
|
float: right;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
.col2-set .form-row-first,
|
|
|
|
.col2-set .form-row-last {
|
|
|
|
width: 48.1%;
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* General WooCommerce components
|
|
|
|
*/
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-01 13:21:13 +00:00
|
|
|
/**
|
|
|
|
* Header cart
|
|
|
|
*/
|
|
|
|
.site-header-cart {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header-cart .cart-contents {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header-cart .widget_shopping_cart {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header-cart .product_list_widget {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Star rating
|
|
|
|
*/
|
|
|
|
.star-rating {
|
2017-08-30 11:14:55 +00:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
height: 1.618em;
|
|
|
|
line-height: 1.618;
|
|
|
|
font-size: 1em;
|
|
|
|
width: 5.3em;
|
2020-04-08 21:36:58 +00:00
|
|
|
font-family: star;
|
2017-08-30 11:14:55 +00:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
.star-rating::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53\53\53\53\53";
|
2020-04-08 21:36:58 +00:00
|
|
|
opacity: 0.25;
|
2017-08-30 11:14:55 +00:00
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-rating span {
|
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
padding-top: 1.5em;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
.star-rating span::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53\53\53\53\53";
|
|
|
|
top: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
p.stars a {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: relative;
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
text-indent: -999em;
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-right: 1px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars a::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
line-height: 1;
|
2020-04-08 21:36:58 +00:00
|
|
|
font-family: star;
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
|
|
|
color: #404040;
|
|
|
|
text-indent: 0;
|
2020-04-08 21:36:58 +00:00
|
|
|
opacity: 0.25;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars a:hover ~ a::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
|
|
|
color: #404040;
|
2020-04-08 21:36:58 +00:00
|
|
|
opacity: 0.25;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars:hover a::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars.selected a.active::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars.selected a.active ~ a::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
|
|
|
color: #404040;
|
2020-04-08 21:36:58 +00:00
|
|
|
opacity: 0.25;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
p.stars.selected a:not(.active)::before {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "\53";
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tabs
|
|
|
|
*/
|
|
|
|
.woocommerce-tabs ul.tabs {
|
2017-08-30 11:14:55 +00:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-tabs ul.tabs li {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-tabs ul.tabs li a {
|
|
|
|
padding: 1em 0;
|
|
|
|
display: block;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.woocommerce-tabs .panel h2:first-of-type {
|
2017-08-30 11:14:55 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Password strength meter
|
|
|
|
*/
|
|
|
|
.woocommerce-password-strength {
|
2017-08-30 11:14:55 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-password-strength.strong {
|
|
|
|
color: #0f834d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-password-strength.short {
|
|
|
|
color: #e2401c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-password-strength.bad {
|
|
|
|
color: #e2401c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-password-strength.good {
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #3d9cd2;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Forms
|
|
|
|
*/
|
|
|
|
.form-row.woocommerce-validated input.input-text {
|
2017-08-30 11:14:55 +00:00
|
|
|
box-shadow: inset 2px 0 0 #0f834d;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.form-row.woocommerce-invalid input.input-text {
|
2017-08-30 11:14:55 +00:00
|
|
|
box-shadow: inset 2px 0 0 #e2401c;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.required {
|
2020-04-08 21:36:58 +00:00
|
|
|
color: #f00;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notices
|
|
|
|
*/
|
|
|
|
.woocommerce-message,
|
|
|
|
.woocommerce-info,
|
|
|
|
.woocommerce-error,
|
|
|
|
.woocommerce-noreviews,
|
|
|
|
p.no-comments {
|
2017-08-30 11:14:55 +00:00
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
background-color: #0f834d;
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.woocommerce-info,
|
|
|
|
.woocommerce-noreviews,
|
|
|
|
p.no-comments {
|
2020-04-08 21:36:58 +00:00
|
|
|
background-color: #3d9cd2;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.woocommerce-error {
|
2017-08-30 11:14:55 +00:00
|
|
|
background-color: #e2401c;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.demo_store {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1em;
|
2020-04-08 21:36:58 +00:00
|
|
|
background-color: #3d9cd2;
|
2017-08-30 11:14:55 +00:00
|
|
|
z-index: 9999;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
@media screen and (min-width: 48em) {
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-30 11:14:55 +00:00
|
|
|
/**
|
2017-08-01 13:21:13 +00:00
|
|
|
* Header cart
|
|
|
|
*/
|
2017-08-30 11:14:55 +00:00
|
|
|
.site-header-cart .widget_shopping_cart {
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 999999;
|
|
|
|
left: -999em;
|
|
|
|
display: block;
|
|
|
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
2020-04-08 21:36:58 +00:00
|
|
|
|
|
|
|
.site-header-cart:hover .widget_shopping_cart,
|
|
|
|
.site-header-cart.focus .widget_shopping_cart {
|
2017-08-30 11:14:55 +00:00
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WooCommerce widgets
|
|
|
|
*/
|
2020-04-08 21:36:58 +00:00
|
|
|
|
2017-08-01 13:21:13 +00:00
|
|
|
/**
|
|
|
|
* WooCommerce Price Filter
|
|
|
|
*/
|
|
|
|
.widget_price_filter .price_slider {
|
2017-08-30 11:14:55 +00:00
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .price_slider_amount {
|
2017-08-30 11:14:55 +00:00
|
|
|
text-align: right;
|
2020-04-08 21:36:58 +00:00
|
|
|
line-height: 2.4;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.widget_price_filter .price_slider_amount .button {
|
|
|
|
float: left;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .ui-slider {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .ui-slider .ui-slider-handle {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
cursor: ew-resize;
|
|
|
|
outline: none;
|
2020-04-08 21:36:58 +00:00
|
|
|
background: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
box-sizing: border-box;
|
2020-04-08 21:36:58 +00:00
|
|
|
margin-top: -0.25em;
|
2017-08-30 11:14:55 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
|
|
|
|
margin-left: -1em;
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:36:58 +00:00
|
|
|
.widget_price_filter .ui-slider .ui-slider-handle:hover,
|
|
|
|
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
|
2017-08-30 11:14:55 +00:00
|
|
|
box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .ui-slider .ui-slider-range {
|
2017-08-30 11:14:55 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
display: block;
|
|
|
|
border: 0;
|
2020-04-08 21:36:58 +00:00
|
|
|
background: #4169e1;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .price_slider_wrapper .ui-widget-content {
|
2017-08-30 11:14:55 +00:00
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .ui-slider-horizontal {
|
2020-04-08 21:36:58 +00:00
|
|
|
height: 0.5em;
|
2017-08-30 11:14:55 +00:00
|
|
|
}
|
2017-08-01 13:21:13 +00:00
|
|
|
|
|
|
|
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
|
2017-08-30 11:14:55 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|