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;
|
||||
}
|
||||
165
frontend/src/containers/cart/style/CartStepsContainer.scss
Normal file
165
frontend/src/containers/cart/style/CartStepsContainer.scss
Normal file
@@ -0,0 +1,165 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
#cart-steps-container {
|
||||
padding: 1rem 1rem 2rem;
|
||||
text-align: center;
|
||||
|
||||
.step-name {
|
||||
cursor: default;
|
||||
padding: 1rem;
|
||||
display: inline-block;
|
||||
border-radius: 4px;
|
||||
color: $whiteColor;
|
||||
}
|
||||
|
||||
.steps-link {
|
||||
display: inline;
|
||||
width: 2rem;
|
||||
height: 0.15rem;
|
||||
position: unset;
|
||||
}
|
||||
|
||||
.step-link {
|
||||
display: inline-block;
|
||||
background: $borderColor;
|
||||
height: 0.15rem;
|
||||
width: 2rem;
|
||||
}
|
||||
|
||||
.active {
|
||||
background: $lightGreenColor;
|
||||
}
|
||||
|
||||
.inactive {
|
||||
background: $lightGreyColor;
|
||||
}
|
||||
|
||||
.completed {
|
||||
background: $blueColor;
|
||||
}
|
||||
|
||||
.progress-main-bar {
|
||||
background: none;
|
||||
height: 1.5rem;
|
||||
font-size: $font-size-small;
|
||||
}
|
||||
|
||||
.progress-bar-item {
|
||||
border-radius: 0 15px 15px 0;
|
||||
overflow: hidden;
|
||||
margin-right: 0.5rem;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.next-btn,
|
||||
.prev-btn {
|
||||
cursor: pointer;
|
||||
background-color: $whiteColor;
|
||||
color: $darkGreyColor;
|
||||
border: 0.1rem $border-grey solid;
|
||||
padding: 0.95rem;
|
||||
display: inline-block;
|
||||
border-radius: $box-radius;
|
||||
font-weight: $font-weight;
|
||||
}
|
||||
|
||||
.next-btn {
|
||||
margin-left: 2rem;
|
||||
}
|
||||
|
||||
.prev-btn {
|
||||
margin-right: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
#cart-items-container {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
@media all and (max-width: 1494px) {
|
||||
#cart-steps-container {
|
||||
.steps-link {
|
||||
position: relative;
|
||||
height: 1.5rem;
|
||||
display: block;
|
||||
width: 2rem;
|
||||
height: 1.5rem;
|
||||
top: 0;
|
||||
left: 49%;
|
||||
}
|
||||
|
||||
.step-link {
|
||||
background: $borderColor;
|
||||
width: 3px;
|
||||
height: 1.5rem;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.next-btn {
|
||||
display: block;
|
||||
width: fit-content;
|
||||
margin-top: 1rem;
|
||||
margin-left: 45%;
|
||||
}
|
||||
|
||||
.prev-btn {
|
||||
display: block;
|
||||
width: fit-content;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: 44%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media all and (min-width: 992px) and (max-width: 1200px) {
|
||||
#cart-steps-container {
|
||||
.step-name {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.steps-link {
|
||||
position: relative;
|
||||
height: 1.5rem;
|
||||
display: block;
|
||||
width: 2rem;
|
||||
height: 1.5rem;
|
||||
top: 0;
|
||||
left: 49%;
|
||||
}
|
||||
|
||||
.step-link {
|
||||
background: $borderColor;
|
||||
width: 3px;
|
||||
height: 1.5rem;
|
||||
z-index: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media all and (max-width: 992px) {
|
||||
#cart-steps-container {
|
||||
.next-btn {
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.prev-btn {
|
||||
display: block;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#cart-customer-details-container,
|
||||
#cart-review-all-order-container,
|
||||
#cart-upload-documents-container {
|
||||
border-top: 0.2rem solid $borderColor;
|
||||
}
|
||||
}
|
||||
@media all and (max-width: 768px) {
|
||||
#cart-steps-container {
|
||||
.step-name {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
#cart-upload-documents-container{
|
||||
border-radius: $box-radius;
|
||||
background: $whiteColor;
|
||||
|
||||
.upload-file-drop-zone {
|
||||
width: 100%;
|
||||
border: 3px dashed $borderColor;
|
||||
margin-top: 1rem;
|
||||
height: 5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.drop-zone-text {
|
||||
text-align: center;
|
||||
padding: 1.3rem 0.5rem;
|
||||
}
|
||||
|
||||
.uploaded {
|
||||
color: #155724;
|
||||
}
|
||||
|
||||
.next-btn {
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
background-color: $whiteColor;
|
||||
color: $darkGreyColor;
|
||||
}
|
||||
|
||||
.cart-subtitle {
|
||||
font-weight: $font-weight;
|
||||
padding-top: 0.3rem;
|
||||
}
|
||||
}
|
||||
|
||||
.upload-layer{
|
||||
background: $whiteColor;
|
||||
padding-bottom: 1rem;
|
||||
|
||||
.document-link{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 480px) {
|
||||
#cart-upload-documents-container {
|
||||
margin-top: 1rem;
|
||||
|
||||
.upload-file-drop-zone {
|
||||
height: 8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
20
frontend/src/containers/cart/style/OrderProjects.scss
Normal file
20
frontend/src/containers/cart/style/OrderProjects.scss
Normal file
@@ -0,0 +1,20 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
#order-projects{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
.order-project-select{
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
.actions-button {
|
||||
background-color: $whiteColor;
|
||||
color: $darkGreyColor;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.actions-button:hover{
|
||||
background: rgba(113, 194, 191, 0.5);
|
||||
}
|
||||
}
|
||||
13
frontend/src/containers/cart/style/PacakgeBids.scss
Normal file
13
frontend/src/containers/cart/style/PacakgeBids.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
@import '../../../styleConstants.scss';
|
||||
|
||||
#cart-bids{
|
||||
.cart-bids-text {
|
||||
color: $redColor;
|
||||
font-size: $font-size-msmall;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.bid-dialog{
|
||||
width: 70%;
|
||||
}
|
||||
Reference in New Issue
Block a user