development #1

Merged
andreamatsunaga merged 17 commits from development into main 2022-12-19 04:49:09 +00:00
7 changed files with 178 additions and 61 deletions
Showing only changes of commit 8e559fa379 - Show all commits

View File

@ -8,14 +8,48 @@ export default class Header {
async init() { async init() {
await this.selectors(); await this.selectors();
console.log(this.item); this.progressBarStructure();
// await this.progressBarMove();
} }
async selectors() { async selectors() {
this.item = await waitElement("#my-element", { // this.header = await waitElement(".headerCheckout");
//#my-element pode ser a class ou o id do elemento html qeu vocÊ quer pegar this.progressBar = await waitElement("#progressBar");
timeout: 5000, // vai esperar 5 segundos antes de rejeitar a promise
interval: 1000, // vai verificar a cada 1 segundo se o elemento existe
});
} }
progressBarStructure() {
if (this.progressBar && window.innerWidth > 1024) {
this.progressBar.innerHTML = `
<ul class="progress-bar__container">
<li class="progress-bar__stage">
<p class="progress-bar__stage--text">Meu carrinho</p>
<div class="progress-bar__stage--circle"></div>
</li>
<li class="progress-bar__stage">
<p class="progress-bar__stage--text">Dados Pessoais</p>
<div class="progress-bar__stage--circle"></div>
</li>
<li class="progress-bar__stage">
<p class="progress-bar__stage--text">Pagamento</p>
<div class="progress-bar__stage--circle"></div>
</li>
</ul>
`
}
// if(this.progressBar && window.innerWidth <=1024) {
// this.progressBar.innerHTML = "";
// }
}
// async progressBarMove() {
// if (this.progressBar && window.innerWidth > 1024) {
// const progressBarList = document.querySelectorAll(("#progressBar ul li"));
// progressBarList.forEach((li) => {
// console.log("Aqui vem seu código")
// })
// }
// }
} }

View File

@ -6,11 +6,11 @@
.link-cart { .link-cart {
a { a {
color: $color-black; color: $black-300;
font-size: 14px; font-size: 14px;
&:hover { &:hover {
color: lighen($color-black, 10); color: lighen($black-300, 10);
} }
} }
} }
@ -40,7 +40,7 @@
input { input {
box-shadow: none; box-shadow: none;
color: $color-black; color: $black-300;
font-family: $font-family; font-family: $font-family;
padding: 0 16px; padding: 0 16px;
border: 2px solid $color-gray3; border: 2px solid $color-gray3;
@ -53,7 +53,7 @@
} }
button { button {
background-color: $color-black; background-color: $black-300;
border-radius: 5px; border-radius: 5px;
border: none; border: none;
font-family: $font-family; font-family: $font-family;
@ -89,11 +89,11 @@
li { li {
span { span {
color: $color-black; color: $black-300;
} }
i::before { i::before {
color: $color-black; color: $black-300;
font-size: 1rem; font-size: 1rem;
opacity: 1; opacity: 1;
} }
@ -101,7 +101,7 @@
} }
i::before { i::before {
color: $color-black; color: $black-300;
font-size: 6rem; font-size: 6rem;
opacity: 0.5; opacity: 0.5;
} }
@ -146,12 +146,12 @@
/* General configurations */ /* General configurations */
.client-notice { .client-notice {
color: $color-black; color: $black-300;
} }
p { p {
label { label {
color: $color-black; color: $black-300;
font-weight: 500; font-weight: 500;
} }
@ -170,7 +170,7 @@
.box-client-info-pj { .box-client-info-pj {
.link a#is-corporate-client, .link a#is-corporate-client,
.link a#not-corporate-client { .link a#not-corporate-client {
color: $color-black; color: $black-300;
font-weight: 500; font-weight: 500;
text-decoration: underline; text-decoration: underline;
} }
@ -183,17 +183,17 @@
button.submit { button.submit {
border: none; border: none;
border-radius: 5px; border-radius: 5px;
background: $color-black; background: $black-300;
margin-top: 8px; margin-top: 8px;
outline: none; outline: none;
transition: all 0.2s linear; transition: all 0.2s linear;
&:hover { &:hover {
background: lighten($color-black, 5); background: lighten($black-300, 5);
} }
&:active { &:active {
background: darken($color-black, 5); background: darken($black-300, 5);
} }
} }
@ -281,7 +281,7 @@
} }
.vtex-omnishipping-1-x-deliveryOptionActive { .vtex-omnishipping-1-x-deliveryOptionActive {
text-shadow: 1.3px 1px lighten($color-black, 50); text-shadow: 1.3px 1px lighten($black-300, 50);
} }
} }
} }

View File

@ -85,18 +85,18 @@
} }
#payment-data-submit { #payment-data-submit {
background: $color-black; background: $black-300;
border: none; border: none;
border-radius: 0; border-radius: 0;
color: $color-white; color: $color-white;
outline: none; outline: none;
transition: all 0.2s linear; transition: all 0.2s linear;
&:hover { &:hover {
background: lighten($color-black, 5); background: lighten($black-300, 5);
} }
&:active { &:active {
background: darken($color-black, 5); background: darken($black-300, 5);
} }
} }
} }
@ -111,7 +111,7 @@
} }
th { th {
color: $color-black; color: $black-300;
padding: 0 0 16px; padding: 0 0 16px;
font-style: normal; font-style: normal;
font-weight: bold; font-weight: bold;
@ -253,7 +253,7 @@
.icon-plus-sign, .icon-plus-sign,
.icon-minus-sign { .icon-minus-sign {
&::before { &::before {
color: $color-black; color: $black-300;
display: block; display: block;
font-weight: 500; font-weight: 500;
padding: 1px 12px; padding: 1px 12px;
@ -300,7 +300,7 @@
font-weight: normal; font-weight: normal;
font-size: 14px; font-size: 14px;
line-height: 16px; line-height: 16px;
color: $color-black; color: $black-300;
} }
} }
@ -405,7 +405,7 @@
} }
.srp-pickup-my-location__button { .srp-pickup-my-location__button {
background-color: $color-black; background-color: $black-300;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
color: $color-white; color: $color-white;
@ -419,11 +419,11 @@
letter-spacing: 0.05em; letter-spacing: 0.05em;
&:hover { &:hover {
background-color: lighten($color-black, 5); background-color: lighten($black-300, 5);
} }
&:active { &:active {
background-color: darken($color-black, 5); background-color: darken($black-300, 5);
} }
} }
} }
@ -469,7 +469,7 @@
font-weight: normal; font-weight: normal;
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 14px;
color: $color-black; color: $black-300;
margin-bottom: 12px; margin-bottom: 12px;
} }
@ -485,7 +485,7 @@
} }
& ~ button { & ~ button {
background-color: $color-black; background-color: $black-300;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
color: $color-white; color: $color-white;
@ -501,11 +501,11 @@
text-transform: uppercase; text-transform: uppercase;
&:hover { &:hover {
background-color: lighten($color-black, 5); background-color: lighten($black-300, 5);
} }
&:active { &:active {
background-color: darken($color-black, 5); background-color: darken($black-300, 5);
} }
} }
@ -673,7 +673,7 @@
} }
button { button {
background: $color-black; background: $black-300;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
color: $color-white; color: $color-white;
@ -691,11 +691,11 @@
} }
&:hover { &:hover {
background-color: lighten($color-black, 5); background-color: lighten($black-300, 5);
} }
&:active { &:active {
background-color: darken($color-black, 5); background-color: darken($black-300, 5);
} }
} }
} }
@ -716,7 +716,7 @@
font-weight: normal; font-weight: normal;
font-size: 14px; font-size: 14px;
line-height: 16px; line-height: 16px;
color: $color-black; color: $black-300;
padding: 12px 0; padding: 12px 0;
} }
@ -737,7 +737,7 @@
font-weight: normal; font-weight: normal;
font-size: 18px; font-size: 18px;
line-height: 21px; line-height: 21px;
color: $color-black; color: $black-300;
} }
} }
} }

View File

@ -1,7 +1,7 @@
.empty-cart { .empty-cart {
font-family: $font-family; font-family: $font-family;
&-content { &-content {
color: $color-black; color: $black-300;
text-align: center; text-align: center;
@include mq(md, max) { @include mq(md, max) {
@ -15,7 +15,7 @@
&-links { &-links {
.link-choose-products { .link-choose-products {
background: $color-black; background: $black-300;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
transition: ease-in 0.22s all; transition: ease-in 0.22s all;
@ -31,7 +31,7 @@
text-transform: uppercase; text-transform: uppercase;
&:hover { &:hover {
background: lighten($color-black, 5); background: lighten($black-300, 5);
} }
} }
} }

View File

@ -54,16 +54,16 @@ body {
} }
.btn-success { .btn-success {
background: $color-black; background: $black-300;
text-shadow: none; text-shadow: none;
&:hover { &:hover {
background: lighten($color-black, 15%); background: lighten($black-300, 15%);
} }
} }
.emailInfo h3 { .emailInfo h3 {
color: $color-black !important; color: $black-300 !important;
} }
#cart-title, #cart-title,

View File

@ -1,36 +1,118 @@
/* _header.scss */ /* _header.scss */
.headerCheckout { .headerCheckout {
// position: relative;
margin: 0;
padding: 30px 131px;
border-bottom: 1px solid $black-500;
.container { .container {
width: auto !important; width: auto !important;
} }
&__wrapper { &__wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
// display: flex;
// justify-content: space-between;
align-items: center; align-items: center;
display: flex;
justify-content: space-between;
} }
&__logo { &__logo {
img { img {
height: 52px; height: 37.14px;
width: auto; width: auto;
} }
} }
&__safeBuy { .progress-bar {
span { // position: absolute;
align-items: center; // top: 50%;
display: flex; // left: 50%;
text-transform: uppercase; // transform: translate(-50%, -50%);
font-family: $font-family; width: 440px;
font-style: normal;
font-weight: normal; &__container {
font-size: 12px; // position:relative;
line-height: 14px;
color: $color-gray; margin: 0;
width: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
// display: flex;
// align-items: center;
// justify-content: space-between;
list-style: none;
} }
i { &__stage {
margin-right: 8px; position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
&--text {
margin: 0;
margin-bottom: 9px;
line-height: 14px;
font-family: $font-family-secundary;
font-size: 12px;
color: $black-500;
}
&--circle {
width: 12px;
height: 12px;
border-radius: 50%;
border: 1px solid $black-500;
// &:active {
// background: $black-500;
// }
}
&::before,
&::after {
content: '';
position: absolute;
bottom: 6.5px;
width: calc(50% - 7px);
height: 1px;
background: $black-500;
}
&::before {
left: 0;
}
&::after{
left: calc(50% + 7px);
}
&:first-child::before,
&:last-child::after {
display: none;
}
}
}
&__safeBuy {
justify-self: flex-end;
display: flex;
align-items: center;
gap: 8px;
img {
width: 12px;
height: 15px;
}
span {
line-height: 16px;
font-family: $font-family;
font-size: 12px;
text-transform: uppercase;
color: $black-300;
} }
} }
} }

View File

@ -5,7 +5,8 @@ $font-family: "Open Sans", sans-serif;
$font-family-secundary:"Tenor Sans", sans-serif; $font-family-secundary:"Tenor Sans", sans-serif;
/* Colors */ /* Colors */
$color-black: #292929; $black-300: #292929;
$black-500: #000000;
$color-white: #fff; $color-white: #fff;