forked from M3-Academy/m3-academy-template-checkout
feat: Cria checkout style #6
@ -4,4 +4,5 @@
|
||||
@import "./partials/footer";
|
||||
@import "./checkout/checkout.scss";
|
||||
@import "./partials/prateleira.scss";
|
||||
@import "./partials/body.scss";
|
||||
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Tenor+Sans&display=swap");
|
||||
|
@ -1,13 +1,24 @@
|
||||
.checkout-container {
|
||||
.client-pre-email {
|
||||
border-color: $color-gray4;
|
||||
border-color: $color-black-500;
|
||||
font-family: $font-family;
|
||||
padding-top: 8px;
|
||||
input {
|
||||
// color: $color-black-500;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#client-pre-email::placeholder {
|
||||
color: $color-black-500;
|
||||
}
|
||||
|
||||
.link-cart {
|
||||
a {
|
||||
color: $color-black;
|
||||
color: $color-black-500;
|
||||
font-size: 14px;
|
||||
font-family: $font-family-secundary;
|
||||
line-height: 16px;
|
||||
text-transform: uppercase;
|
||||
|
||||
&:hover {
|
||||
color: lighen($color-black, 10);
|
||||
@ -25,12 +36,17 @@
|
||||
margin-bottom: 16px;
|
||||
|
||||
span {
|
||||
color: #303030;
|
||||
font-size: 24px;
|
||||
color: $color-black-500;
|
||||
font-size: 20px;
|
||||
font-family: $font-family-secundary;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
small {
|
||||
color: $color-gray4;
|
||||
color: $color-black-500;
|
||||
font-weight: 20px;
|
||||
font-family: $font-family-secundary;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -43,7 +59,7 @@
|
||||
color: $color-black;
|
||||
font-family: $font-family;
|
||||
padding: 0 16px;
|
||||
border: 2px solid $color-gray3;
|
||||
border: 1px solid $color-black-500;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
|
||||
@ -53,13 +69,15 @@
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: $color-black;
|
||||
border-radius: 5px;
|
||||
background-color: $color-blue-100;
|
||||
border-radius: 0 5px 5px 0;
|
||||
border: none;
|
||||
font-family: $font-family;
|
||||
height: 54px;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: $color-black-500;
|
||||
font-weight: bold;
|
||||
|
||||
@media (max-width: 490px) {
|
||||
height: 48px;
|
||||
@ -70,14 +88,16 @@
|
||||
|
||||
span.help.error {
|
||||
color: red;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.emailInfo {
|
||||
padding: 16px;
|
||||
background-color: $color-white;
|
||||
border: 1px solid $color-gray4;
|
||||
border-radius: 0;
|
||||
border: 1px solid $color-black-500;
|
||||
border-radius: 5px;
|
||||
|
||||
h3 {
|
||||
color: #303030;
|
||||
@ -90,10 +110,12 @@
|
||||
li {
|
||||
span {
|
||||
color: $color-black;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
i::before {
|
||||
color: $color-black;
|
||||
color: $color-blue-100;
|
||||
font-size: 1rem;
|
||||
opacity: 1;
|
||||
}
|
||||
|
@ -2,6 +2,12 @@
|
||||
@include mq(md, max) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#cart-title {
|
||||
font-size: 24px;
|
||||
color: $color-black;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
}
|
||||
|
||||
.cart-template {
|
||||
@ -13,7 +19,7 @@
|
||||
display: none;
|
||||
}
|
||||
.cart {
|
||||
border: 3px solid $color-gray3;
|
||||
border: 1px solid $color-gray3;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
padding: 16px;
|
||||
@ -114,7 +120,7 @@
|
||||
color: $color-black;
|
||||
padding: 0 0 16px;
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
|
||||
@ -227,6 +233,7 @@
|
||||
max-width: 118px;
|
||||
padding: 0;
|
||||
width: max-content !important;
|
||||
border-radius: 8px;
|
||||
|
||||
@media (max-width: 490px) {
|
||||
margin-left: 84px !important;
|
||||
@ -262,15 +269,15 @@
|
||||
|
||||
.icon-minus-sign {
|
||||
&:before {
|
||||
content: "-";
|
||||
font-size: 16px;
|
||||
color: $color-blue-100;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-plus-sign {
|
||||
&:before {
|
||||
content: "+";
|
||||
font-size: 14px;
|
||||
color: $color-blue-100;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@ -295,12 +302,15 @@
|
||||
.icon-question-sign {
|
||||
display: none;
|
||||
}
|
||||
.total-selling-price {
|
||||
font-weight: bold;
|
||||
}
|
||||
span {
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
color: $color-black;
|
||||
color: $color-black-500;
|
||||
}
|
||||
}
|
||||
|
||||
@ -315,7 +325,7 @@
|
||||
top: 0;
|
||||
}
|
||||
.icon::before {
|
||||
color: $color-gray4;
|
||||
color: $color-gray6;
|
||||
font-size: 15px;
|
||||
|
||||
@include mq(md, max) {
|
||||
@ -630,6 +640,7 @@
|
||||
}
|
||||
|
||||
.coupon-label label {
|
||||
display: flex;
|
||||
margin-bottom: 12px;
|
||||
font-family: $font-family;
|
||||
font-style: normal;
|
||||
@ -641,6 +652,7 @@
|
||||
}
|
||||
|
||||
.coupon-fields {
|
||||
display: flex;
|
||||
margin-bottom: 32px;
|
||||
|
||||
@include mq(sm, max) {
|
||||
@ -673,14 +685,14 @@
|
||||
}
|
||||
|
||||
button {
|
||||
background: $color-black;
|
||||
background: $color-blue-100;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
color: $color-white;
|
||||
color: $color-black-500;
|
||||
font-size: 12px;
|
||||
height: 36px;
|
||||
letter-spacing: 1px;
|
||||
margin-left: 6px;
|
||||
margin-left: 15px;
|
||||
outline: none;
|
||||
transition: all 0.2s linear;
|
||||
width: 94px;
|
||||
@ -738,6 +750,7 @@
|
||||
font-size: 18px;
|
||||
line-height: 21px;
|
||||
color: $color-black;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -782,7 +795,7 @@
|
||||
|
||||
.btn-place-order-wrapper {
|
||||
a {
|
||||
background: $color-green;
|
||||
background: $color-blue-100;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
@ -791,7 +804,7 @@
|
||||
padding: 12px 19px;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($color-green, 5);
|
||||
background-color: darken($color-blue-100, 5);
|
||||
}
|
||||
|
||||
&:after {
|
||||
@ -805,6 +818,9 @@
|
||||
vertical-align: middle;
|
||||
line-height: 19px;
|
||||
text-shadow: none;
|
||||
font-weight: bold;
|
||||
color: $color-black-500;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -68,13 +68,13 @@ body {
|
||||
|
||||
#cart-title,
|
||||
#orderform-title {
|
||||
color: $color-gray2;
|
||||
color: $color-black-500;
|
||||
font-family: $font-family;
|
||||
font-weight: 500;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
font-size: 24px;
|
||||
line-height: 42px;
|
||||
margin: 40px 0 30px;
|
||||
letter-spacing: 0.1em;
|
||||
letter-spacing: 0%;
|
||||
text-transform: uppercase;
|
||||
|
||||
@include mq(md, max) {
|
||||
|
@ -146,34 +146,3 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.container-main {
|
||||
// background-color: burlywood;
|
||||
#cart-title {
|
||||
// display: none !important;
|
||||
}
|
||||
|
||||
.empty-cart-content {
|
||||
.empty-cart-title {
|
||||
font-size: 24px;
|
||||
font-family: $font-family;
|
||||
}
|
||||
.empty-cart-message {
|
||||
display: none;
|
||||
}
|
||||
.empty-cart-links {
|
||||
.btn {
|
||||
width: 327px;
|
||||
background-color: transparent;
|
||||
border: 1px solid $color-black;
|
||||
border-radius: 0;
|
||||
color: $color-black;
|
||||
}
|
||||
|
||||
// .btn::after {
|
||||
// content: "continuar comprando";
|
||||
// color: $color-black;
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user