woocommerce/assets/css/woocommerce-layout.scss

463 lines
5.2 KiB
SCSS
Raw Normal View History

2014-11-18 12:52:00 +00:00
/**
* woocommerce-layout.scss
* Applies layout to the default WooCommerce frontend design
*/
/**
* Imports
*/
2014-10-17 17:21:54 +00:00
@import "bourbon";
@import "mixins";
@import "variables";
2013-05-10 12:02:15 +00:00
2014-11-18 12:52:00 +00:00
/**
* Styling begins
*/
2013-05-10 12:02:15 +00:00
.woocommerce, .woocommerce-page {
/**
* General layout styles
*/
2013-05-10 12:02:15 +00:00
.col2-set {
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-10 12:02:15 +00:00
width: 100%;
2013-05-10 12:02:15 +00:00
.col-1 {
float: left;
2013-05-10 12:02:15 +00:00
width: 48%;
}
.col-2 {
float: right;
width: 48%;
}
}
img {
height: auto;
max-width: 100%;
2013-05-10 12:02:15 +00:00
}
/**
* Product page
*/
div.product,
#content div.product {
2013-05-10 12:02:15 +00:00
div.images {
float: left;
2013-05-10 12:02:15 +00:00
width: 48%;
}
2013-05-10 12:02:15 +00:00
div.thumbnails {
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-10 12:02:15 +00:00
a {
float: left;
2013-05-10 12:02:15 +00:00
width: 30.75%;
margin-right: 3.8%;
2014-11-17 15:41:21 +00:00
margin-bottom: 1em;
2013-05-10 12:02:15 +00:00
}
2013-05-10 12:02:15 +00:00
a.last {
margin-right: 0;
}
2013-05-10 12:02:15 +00:00
a.first {
clear: both;
2013-05-10 12:02:15 +00:00
}
2014-11-17 15:41:21 +00:00
&.columns-1 {
a {
width: 100%;
margin-right: 0;
float: none;
}
}
&.columns-2 {
a {
width: 48%;
}
}
&.columns-4 {
a {
width: 22.05%;
}
}
&.columns-5 {
a {
width: 16.9%;
}
}
2013-05-10 12:02:15 +00:00
}
2013-05-10 12:02:15 +00:00
div.summary {
float: right;
width: 48%;
}
2013-05-10 15:29:01 +00:00
.woocommerce-tabs {
clear: both;
2014-03-05 09:37:26 +00:00
ul.tabs {
2014-09-22 17:35:48 +00:00
@include menu();
2014-03-05 09:37:26 +00:00
}
2013-05-10 15:29:01 +00:00
}
2013-05-10 15:29:01 +00:00
#reviews {
.comment {
2014-09-22 17:35:48 +00:00
@include mediaright();
2013-05-10 15:29:01 +00:00
}
}
}
/**
* Product loops
*/
.related,
.upsells.products {
2014-09-22 17:35:48 +00:00
@include clearfix();
clear: both;
ul.products,
ul {
float: none;
2013-05-10 12:02:15 +00:00
li.product {
width: 48%;
2013-05-10 12:02:15 +00:00
img {
width: 100%;
height: auto;
2013-05-10 12:02:15 +00:00
}
}
}
}
ul.products {
clear: both;
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-10 12:02:15 +00:00
li.product {
float: left;
2013-05-10 12:02:15 +00:00
margin: 0 3.8% 2.992em 0;
padding: 0;
position: relative;
width: 22.05%;
margin-left: 0;
}
2013-05-10 12:02:15 +00:00
li.first {
clear: both;
2013-05-10 12:02:15 +00:00
}
2013-05-10 12:02:15 +00:00
li.last {
margin-right: 0;
}
}
2013-08-19 14:12:17 +00:00
&.columns-1 {
ul.products {
li.product {
width: 100%;
margin-right: 0;
2013-08-19 14:12:17 +00:00
}
}
}
&.columns-2 {
ul.products {
li.product {
width: 48%;
2013-08-19 14:12:17 +00:00
}
}
}
&.columns-3 {
ul.products {
li.product {
width: 30.75%;
2013-08-19 14:12:17 +00:00
}
}
}
&.columns-5 {
ul.products {
li.product {
width: 16.95%;
2013-08-19 14:12:17 +00:00
}
}
}
&.columns-6 {
ul.products {
li.product {
width: 13.5%;
2013-08-19 14:12:17 +00:00
}
}
}
2013-05-10 12:02:15 +00:00
.woocommerce-result-count {
float: left;
}
.woocommerce-ordering {
float: right;
}
.woocommerce-pagination {
ul.page-numbers {
2014-09-22 17:35:48 +00:00
@include menu();
2013-05-10 12:02:15 +00:00
}
}
/**
* Cart page
*/
table.cart,
#content table.cart {
2013-05-10 12:02:15 +00:00
img {
height: auto;
2013-05-10 12:02:15 +00:00
}
2013-05-15 16:47:27 +00:00
td.actions {
text-align: right;
2013-05-15 16:47:27 +00:00
.input-text {
width: 80px;
2013-05-15 16:47:27 +00:00
}
2013-05-15 16:47:27 +00:00
.coupon {
float: left;
2013-05-15 16:47:27 +00:00
label {
display: none;
2013-05-15 16:47:27 +00:00
}
}
}
2013-05-10 12:02:15 +00:00
}
.cart-collaterals {
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-10 12:02:15 +00:00
width: 100%;
2013-05-10 12:02:15 +00:00
.related {
width: 30.75%;
float: left;
2013-05-10 12:02:15 +00:00
}
.cross-sells {
width: 48%;
float: left;
2013-05-10 12:02:15 +00:00
ul.products {
float: none;
2013-05-10 12:02:15 +00:00
li {
width: 48%;
}
}
}
2013-05-10 12:02:15 +00:00
.shipping_calculator {
width: 48%;
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-10 12:02:15 +00:00
clear: right;
float: right;
2013-05-10 12:02:15 +00:00
.col2-set {
.col-1,
.col-2 {
2013-05-10 12:02:15 +00:00
width: 47%;
}
}
}
2013-05-10 12:02:15 +00:00
.cart_totals {
float: right;
width: 48%;
}
}
/**
* Cart sidebar
*/
ul.cart_list,
ul.product_list_widget {
2013-05-10 15:29:01 +00:00
li {
2014-09-22 17:35:48 +00:00
@include mediaright();
2013-05-10 15:29:01 +00:00
}
}
/**
* Forms
*/
2013-05-10 12:02:15 +00:00
form {
2013-05-13 15:02:18 +00:00
.form-row {
2014-09-22 17:35:48 +00:00
@include clearfix();
2013-05-13 15:02:18 +00:00
label {
display: block;
2013-05-13 15:02:18 +00:00
&.checkbox {
display: inline;
}
}
2013-05-13 15:02:18 +00:00
select {
width: 100%;
}
2013-05-13 15:02:18 +00:00
.input-text {
2014-11-13 08:47:35 +00:00
@include box-sizing(border-box);
width: 100%;
2013-05-13 15:02:18 +00:00
}
}
.form-row-first,
.form-row-last {
float: left;
2013-05-10 12:02:15 +00:00
width: 47%;
overflow: visible;
}
2013-05-10 12:02:15 +00:00
.form-row-last {
float: right;
}
2013-05-10 12:02:15 +00:00
.form-row-wide {
clear: both;
}
}
2013-05-13 15:02:18 +00:00
#payment {
.form-row {
select {
width: auto;
2013-05-13 15:02:18 +00:00
}
}
2013-05-15 16:47:27 +00:00
.terms {
text-align: right;
padding: 0 1em 0;
}
2013-05-15 16:47:27 +00:00
#place_order {
float: right;
}
2013-05-13 15:02:18 +00:00
}
2013-05-10 12:02:15 +00:00
}
/**
* Twenty Fourteen specific styles
*/
2013-12-03 16:53:22 +00:00
.twentyfourteen {
.tfwc {
padding: 12px 10px 0;
max-width: 474px;
margin: 0 auto;
2014-01-08 16:05:39 +00:00
.product .entry-summary {
padding: 0 !important;
2013-12-03 16:53:22 +00:00
margin: 0 0 1.618em !important;
}
div.product.hentry.has-post-thumbnail {
margin-top: 0;
}
.product {
.images {
img {
margin-bottom: 1em;
}
}
}
2013-12-03 16:53:22 +00:00
}
}
@media screen and (min-width: 673px) {
.twentyfourteen {
.tfwc {
padding-right: 30px;
padding-left: 30px;
}
}
}
@media screen and (min-width: 1040px) {
.twentyfourteen {
.tfwc {
padding-right: 15px;
padding-left: 15px;
}
}
}
@media screen and (min-width: 1110px) {
.twentyfourteen {
.tfwc {
padding-right: 30px;
padding-left: 30px;
}
}
}
@media screen and (min-width: 1218px) {
.twentyfourteen {
.tfwc {
margin-right: 54px;
}
}
2013-12-09 09:55:11 +00:00
.full-width {
.twentyfourteen {
.tfwc {
margin-right: auto;
}
}
}
}
2014-11-21 10:29:47 +00:00
/**
* Twenty Fifteen specific styles
*/
2014-11-21 10:51:08 +00:00
.twentyfifteen {
.t15wc {
padding-left: 7.6923%;
padding-right: 7.6923%;
padding-top: 7.6923%;
background: #fff;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
.page-title {
margin-left: 0;
}
}
}
2014-11-21 10:29:47 +00:00
@media screen and (min-width: 59.6875em) {
.twentyfifteen {
.t15wc {
2014-11-21 10:51:08 +00:00
margin-left: 8.3333%;
margin-right: 8.3333%;
}
}
2014-11-21 10:29:47 +00:00
2014-11-21 10:51:08 +00:00
.single-product {
.twentyfifteen {
.entry-summary {
padding: 0 !important;
2014-11-21 10:29:47 +00:00
}
}
}
2014-11-21 10:51:08 +00:00
}
@media screen and (min-width: 38.75em) {
.twentyfifteen {
.t15wc {
margin-right: 7.6923%;
margin-left: 7.6923%;
margin-top: 8.3333%;
}
}
2014-11-21 10:29:47 +00:00
}