65 lines
1.0 KiB
SCSS
65 lines
1.0 KiB
SCSS
@import "client/common.scss";
|
|
|
|
.shopping-cart-contents {
|
|
|
|
background-color:#262626;
|
|
border-width:0 1px 0 0;
|
|
border-style:solid;
|
|
border-color:#333;
|
|
padding:20px 20px 0;
|
|
.cart-item-caption {
|
|
width: 50%;
|
|
text-align: left;
|
|
float: left;
|
|
margin-bottom: 10px;
|
|
@include border_box_sizing;
|
|
}
|
|
|
|
.first-one-free {
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.cart-item-price {
|
|
width: 25%;
|
|
text-align: right;
|
|
float: left;
|
|
padding: 0 10px;
|
|
margin-bottom: 10px;
|
|
@include border_box_sizing;
|
|
}
|
|
|
|
.cart-item-quantity {
|
|
width: 10%;
|
|
text-align: right;
|
|
float: left;
|
|
padding: 0 10px;
|
|
margin-bottom: 10px;
|
|
@include border_box_sizing;
|
|
}
|
|
|
|
.cart-items {
|
|
margin-top: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.cart-item {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.no-cart-items {
|
|
}
|
|
|
|
.tax-total {
|
|
margin-top:10px;
|
|
border-width:1px 0 0 0;
|
|
border-color:white;
|
|
border-style:solid;
|
|
padding-top:10px;
|
|
}
|
|
.cart-item.total {
|
|
margin-top:5px;
|
|
}
|
|
}
|