initial docker setup
This commit is contained in:
170
frontend/src/containers/cart/style/Cart.scss
Normal file
170
frontend/src/containers/cart/style/Cart.scss
Normal file
@@ -0,0 +1,170 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
#cart-count {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#cart-container {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
#cart-items-container {
|
||||
border-radius: $box-radius;
|
||||
|
||||
.cart-show-items {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.quantity-field {
|
||||
margin-left: 2%;
|
||||
display: inline-block;
|
||||
max-width: 5rem;
|
||||
}
|
||||
|
||||
.remove-item {
|
||||
color: $redColor;
|
||||
cursor: pointer;
|
||||
font-size: 1.3rem;
|
||||
padding-top: 0.375rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
.cart-item-details {
|
||||
padding-top: 0.5rem;
|
||||
}
|
||||
|
||||
.cart-item-small-details {
|
||||
padding-top: 0.5rem;
|
||||
font-size: $font-size-msmall;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
font-weight: $font-weight;
|
||||
}
|
||||
|
||||
.cart-total-price {
|
||||
padding: 1rem 0;
|
||||
font-size: $font-size-big;
|
||||
}
|
||||
|
||||
.price-table th{
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.price-table td{
|
||||
border-top: 1px solid $darkGreyColor;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.not-available {
|
||||
margin-left: 0.2rem;
|
||||
color: $not-available-status-color;
|
||||
font-weight: $font-weight;
|
||||
font-size: $font-size-msmall;
|
||||
}
|
||||
|
||||
.old-price{
|
||||
text-decoration: line-through;
|
||||
font-size: $font-size-msmall;
|
||||
}
|
||||
|
||||
.new-price{
|
||||
color: $redColor;
|
||||
font-weight: $font-weight;
|
||||
}
|
||||
}
|
||||
|
||||
#cart-review-order-container {
|
||||
border-radius: $box-radius;
|
||||
|
||||
.cart-customer-main-info-row {
|
||||
padding: 0.5rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.place-order-btn {
|
||||
cursor: pointer;
|
||||
background-color: $done-status-color;
|
||||
width: 100%;
|
||||
float: right;
|
||||
font-weight: $font-weight;
|
||||
}
|
||||
|
||||
.button-cart {
|
||||
text-align: right;
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
#go-to-co-market-text {
|
||||
color: $warmGreyColor;
|
||||
}
|
||||
|
||||
#cart-add-new-delivery-address {
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
#cart-customer-details-container {
|
||||
.cart-customer-main-info-row {
|
||||
padding: 0.5rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.country-address {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.next-btn, .prev-btn {
|
||||
cursor: pointer;
|
||||
background-color: $whiteColor;
|
||||
color: $darkGreyColor;
|
||||
}
|
||||
|
||||
.next-btn {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.prev-btn {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.address-row {
|
||||
position: relative;
|
||||
border-bottom: 1px solid $divider-color;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.address-text {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin-left: 2rem;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.address-icons{
|
||||
position: absolute;
|
||||
min-width: 3rem;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.control-icon {
|
||||
margin-right: 2rem;
|
||||
font-size: $font-size-big;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.add-address-btn{
|
||||
cursor: pointer;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.cart-address-box {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
#cart-customer-main-information-container {
|
||||
border-radius: $box-radius;
|
||||
}
|
||||
Reference in New Issue
Block a user