87 lines
1.4 KiB
SCSS
87 lines
1.4 KiB
SCSS
#shoppingCartScreen {
|
|
|
|
.content-body {
|
|
padding: 50px 20px 20px 20px;
|
|
overflow: scroll;
|
|
.shopping-cart-content {
|
|
//padding-top: 20px;
|
|
margin-bottom: 20px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.checkout-image {
|
|
width: 10%;
|
|
float: left;
|
|
}
|
|
|
|
.checkout-desc {
|
|
width: 90%;
|
|
float: left;
|
|
|
|
div {
|
|
margin-bottom: 7px;
|
|
}
|
|
|
|
div#note {
|
|
font-style: italic;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
.cart-item-caption {
|
|
width: 50%;
|
|
text-align: left;
|
|
float: left;
|
|
}
|
|
|
|
.cart-item-caption#header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.cart-item-price {
|
|
width: 15%;
|
|
text-align: right;
|
|
float: left;
|
|
}
|
|
|
|
.cart-item-quantity {
|
|
width: 15%;
|
|
text-align: right;
|
|
float: left;
|
|
}
|
|
|
|
.cart-item-actions {
|
|
width: 20%;
|
|
text-align: center;
|
|
float: left;
|
|
}
|
|
|
|
.cart-items {
|
|
width: 100%;
|
|
min-height: 200px;
|
|
// overflow: auto;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.cart-item {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.shopping-sub-total {
|
|
width: 65%;
|
|
float: left;
|
|
text-align: right;
|
|
margin-bottom: 20px;
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.no-cart-items {
|
|
margin-top: 30px;
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
} |