feat(sassCheckout):Finaliza o sass do checkout

This commit is contained in:
DaviHKlein 2022-12-18 22:15:47 -03:00
parent 0f45cb0a33
commit 33d703177e
2 changed files with 135 additions and 44 deletions

View File

@ -1,38 +1,105 @@
.empty-cart { .empty-cart {
font-family: $font-family; font-family: $font-family;
&-content { &-content {
color: $color-black; margin-top: 170px;
text-align: center; color: $color-black;
text-align: center;
@include mq(md, max) { @include mq(md, max) {
padding: 0 16px; padding: 0 16px;
} }
} .empty-cart-message {
display: none;
}
}
&-title { &-title {
font-size: 20px; font-family: "Open Sans";
} font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 33px;
text-align: center;
text-transform: uppercase;
color: $color-black-000;
margin-bottom: 32px;
@include mq(dt, max) {
font-size: 18px;
line-height: 25px;
text-transform: uppercase;
margin-bottom: 22px;
}
@include mq(tv, min) {
font-weight: 700;
font-size: 48px;
line-height: 65px;
}
}
&-btn {
padding: 250px !important;
}
&-links { &-links {
.link-choose-products { .link-choose-products {
background: $color-black; background: $white;
border: none; transition: ease-in 0.22s all;
border-radius: 5px; outline: none;
transition: ease-in 0.22s all; font-family: $font-family-secundary;
outline: none; font-style: normal;
font-family: $font-family; color: $black;
font-style: normal; text-align: center;
font-weight: 500; letter-spacing: 0.05em;
font-size: 14px; color: $black;
line-height: 16px; font-size: 0px;
text-align: center; text-transform: uppercase;
letter-spacing: 0.05em; border: 1px solid #000000;
color: $color-white; border-radius: 0%;
text-transform: uppercase; padding: 16px 64px 16px 65px;
height: 16px;
margin: 0;
&::after {
font-family: "Tenor Sans";
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-align: center;
text-transform: uppercase;
content: "Continuar comprando";
}
&:hover { &:hover {
background: lighten($color-black, 5); background: $white;
} }
} @media screen and (max-width: 354px) {
} height: 32px !important;
}
@include mq(dt, max) {
height: 16px;
padding: 16px 26px;
&::after {
font-family: "Tenor Sans";
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-align: center;
text-transform: uppercase;
}
}
@include mq(tv, min) {
height: 33.52px;
padding: 16px 121px;
&::after {
font-style: normal;
font-weight: 400;
font-size: 28px;
line-height: 33px;
text-align: center;
text-transform: uppercase;
}
}
}
}
} }

View File

@ -9,11 +9,11 @@ html {
} }
footer .footerCheckout__wrapper { footer .footerCheckout__wrapper {
width: 94.9734%; width: 100%;
// width: 94.9734%;
margin: auto auto 0 auto; margin: auto auto 0 auto;
} }
footer .footerCheckout__prateleira, footer .footerCheckout__prateleira {
header {
width: 79.53125%; width: 79.53125%;
margin: 0 auto; margin: 0 auto;
} }
@ -49,37 +49,61 @@ body {
} }
.container-order-form, .container-order-form,
.container-cart { .container-cart {
//margin-top: 170px;
width: 80%; width: 80%;
@include mq(l, max) {
max-width: 1024px;
width: 100%;
}
} }
} }
.btn-success { .btn-success {
background: $color-black; background: $color-black2;
padding: 15px 64px 17px 65px;
text-shadow: none; text-shadow: none;
&:hover { &:hover {
background: lighten($color-black, 15%); background: lighten($color-black2, 15%);
} }
} }
.emailInfo h3 { .emailInfo h3 {
color: $color-black !important; color: $color-black2 !important;
}
#orderform-title {
margin-bottom: 28px !important;
} }
#cart-title, #cart-title,
#orderform-title { #orderform-title {
color: $color-gray2; color: $color-black2;
font-family: $font-family; font-family: $font-family;
font-weight: 500; height: 33px;
font-size: 36px; line-height: 33px;
line-height: 42px; margin: 17px 0 16px;
margin: 40px 0 30px; font-weight: 700;
letter-spacing: 0.1em; font-size: 24px;
letter-spacing: 0.05em;
text-transform: uppercase; text-transform: uppercase;
@include mq(xxl, min) {
height: 65px;
font-weight: 700;
font-size: 48px;
line-height: 65px;
letter-spacing: 0.05em;
}
@include mq(md, max) { @include mq(md, max) {
margin-left: 30px; margin-left: 30px;
} }
@include mq(l, max) {
margin-left: 16px;
}
} }
.dropdown { .dropdown {