forked from M3-Academy/m3-academy-template-checkout
development #4
@ -7,29 +7,109 @@ export default class Footer {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
// this.onUpdate();
|
this.onUpdate();
|
||||||
|
/*await this.pegarInfo(
|
||||||
|
"https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319"
|
||||||
|
);*/
|
||||||
|
await this.renderIconCreditCards();
|
||||||
|
await this.renderIconVtexPci();
|
||||||
|
await this.renderIconsDeveloped();
|
||||||
|
|
||||||
|
await this.trocaTitle();
|
||||||
|
await this.trocaFrete();
|
||||||
|
await this.trocaUnidade();
|
||||||
|
await this.trocaNotiCliente();
|
||||||
|
/*await this.trocaNoCep();*/
|
||||||
|
await this.trocaIdentificao();
|
||||||
|
this.events();
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
||||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
||||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||||
|
this.tituloCarrinho = await waitElement("#cart-title");
|
||||||
|
this.footerIconsCreditCards = await waitElement(".footerCheckout__payments");
|
||||||
|
this.footerIconVtexPci = await waitElement(".footerCheckout__vtexpci");
|
||||||
|
this.footerIconsDeveloped = await waitElement(".footerCheckout__developedBy");
|
||||||
|
this.titleCart = await waitElement(".empty-cart-title");
|
||||||
|
this.subTitleCart = await waitElement(".empty-cart-message");
|
||||||
|
this.buttonCart = await waitElement("#cart-choose-products");
|
||||||
|
this.prateleiraInfoCards = await waitElement(".footerCheckout__prateleira");
|
||||||
|
this.freteCarrinho = await waitElement(".shipping-date");
|
||||||
|
this.unidadeCarrinho = await waitElement(".product-price");
|
||||||
|
this.notiCliente = await waitElement(".client-notice");
|
||||||
|
this.identificacaoUser = await waitElement(
|
||||||
|
"#client-profile-data > div > div.accordion-heading > span > span",
|
||||||
|
0
|
||||||
|
);
|
||||||
|
/*
|
||||||
|
Cep bugou o programa, não tem nada de diferente que fiz dos outros métodos.
|
||||||
|
this.noCep = await waitElement(
|
||||||
|
"#shipping-preview-container > div > div > div.vtex-shipping-preview-0-x-pc.srp-postal-code > form > div > p > small > a",
|
||||||
|
0
|
||||||
|
);*/
|
||||||
|
}
|
||||||
|
events() {
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
this.onUpdate();
|
||||||
|
if (window.location.hash == "#/cart" && this.checkoutVazio.style.display == "none") {
|
||||||
|
this.listaInfocards.style.display = "flex";
|
||||||
|
//this.slickOn();
|
||||||
|
}
|
||||||
|
if (window.location.hash != "#/cart") {
|
||||||
|
this.listaInfocards.style.display = "none";
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdate() {
|
onUpdate() {
|
||||||
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
||||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
||||||
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
||||||
let target = this.checkoutVazio;
|
let target = this.checkoutVazio;
|
||||||
|
let prateleiraItens = this.prateleiraInfoCards;
|
||||||
|
let titulo = this.tituloCarrinho;
|
||||||
|
if (target.style.display == "none" && window.location.hash == "#/cart") {
|
||||||
|
titulo.style.display = "block";
|
||||||
|
this.pegarInfo(
|
||||||
|
"https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319"
|
||||||
|
);
|
||||||
|
prateleiraItens.style.display = "flex";
|
||||||
|
this.slickOn();
|
||||||
|
} else {
|
||||||
|
titulo.style.display = "none";
|
||||||
|
prateleiraItens.style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
let config = { childList: true, attributes: true };
|
let config = { childList: true, attributes: true };
|
||||||
let observer = new MutationObserver((mutations) => {
|
let observer = new MutationObserver((mutations) => {
|
||||||
|
this.pegarInfo(
|
||||||
|
"https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319"
|
||||||
|
);
|
||||||
|
//console.log("oi", mutations);
|
||||||
mutations.forEach(function (mutation) {
|
mutations.forEach(function (mutation) {
|
||||||
console.log(mutation.type);
|
console.log("oi", mutation);
|
||||||
|
if (target.style.display != "none") {
|
||||||
|
//this.slickOff();
|
||||||
|
prateleiraItens.style.display = "none";
|
||||||
|
titulo.style.display = "none";
|
||||||
|
} else {
|
||||||
|
prateleiraItens.style.display = "flex";
|
||||||
|
//this.slickOn();
|
||||||
|
titulo.style.display = "block";
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(target, config);
|
observer.observe(target, config);
|
||||||
}
|
}
|
||||||
|
ligaDesligaElementos(observado) {
|
||||||
|
if (observado.style.display === "none") {
|
||||||
|
observado.style.display = "block";
|
||||||
|
} else {
|
||||||
|
observado.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
async addCarrossel() {
|
async addCarrossel() {
|
||||||
const elemento = await waitElement("#my-element");
|
const elemento = await waitElement("#my-element");
|
||||||
$(elemento).slick({
|
$(elemento).slick({
|
||||||
@ -37,4 +117,109 @@ export default class Footer {
|
|||||||
slidesToScroll: 1,
|
slidesToScroll: 1,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
produtos(data) {
|
||||||
|
return {
|
||||||
|
imagem: data["items"][0]["images"][0]["imageUrl"],
|
||||||
|
link: data["link"],
|
||||||
|
nome: data["productName"],
|
||||||
|
tamanho: data["items"].map((val) => val["name"]),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async pegarInfo(url) {
|
||||||
|
const response = await fetch(url);
|
||||||
|
//console.log(response);
|
||||||
|
const data = await response.json();
|
||||||
|
//console.log(data);
|
||||||
|
const Items = data.map((val) => this.produtos(val));
|
||||||
|
console.log(Items);
|
||||||
|
await this.renderInfoCards(Items);
|
||||||
|
}
|
||||||
|
estruturaInfoCard(items) {
|
||||||
|
let listaInfocards = ``;
|
||||||
|
for (const i of items) {
|
||||||
|
const elem = `<li class="infoCard">
|
||||||
|
<img class="infoCard__image" src="${i["imagem"]}" /><p class="infoCard__text">${
|
||||||
|
i["nome"]
|
||||||
|
}</p>
|
||||||
|
${this.tamanhosProdutos(i["tamanho"], i["link"])}
|
||||||
|
<a class="infoCard__link" href="${i["link"]}">VER PRODUTO</a></li>`;
|
||||||
|
listaInfocards += elem;
|
||||||
|
}
|
||||||
|
return listaInfocards;
|
||||||
|
}
|
||||||
|
tamanhosProdutos(tam, link) {
|
||||||
|
let listaTamanhos = `<ul class="infoCard__tamanhos">`;
|
||||||
|
for (const n of tam) {
|
||||||
|
const nums = `<li class=infoCard__tamanho><a class=infoCard__tamanho__link href="${link}">${n}</a></li>`;
|
||||||
|
listaTamanhos += nums;
|
||||||
|
}
|
||||||
|
listaTamanhos += `</ul>`;
|
||||||
|
return listaTamanhos;
|
||||||
|
}
|
||||||
|
|
||||||
|
async renderInfoCards(Items) {
|
||||||
|
this.prateleiraInfoCards.innerHTML = `<h2 class="prateleira__subtitle">Você também pode gostar:</h2><ul class="infoCards">${this.estruturaInfoCard(
|
||||||
|
Items
|
||||||
|
)}</ul>`;
|
||||||
|
this.slickOn();
|
||||||
|
}
|
||||||
|
|
||||||
|
renderIconCreditCards() {
|
||||||
|
this.footerIconsCreditCards.innerHTML = `
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png" />
|
||||||
|
<img class="IconCredImg" src="https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png" />`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderIconVtexPci() {
|
||||||
|
this.footerIconVtexPci.innerHTML = `<img class="IconVtexImg" src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png" />`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderIconsDeveloped() {
|
||||||
|
this.footerIconsDeveloped.innerHTML = `
|
||||||
|
<li><a href="https://vtex.com/br-pt/"><span>Powered By</span><img class="iconDevV" src="https://agenciamagma.vteximg.com.br/arquivos/logoVTEXM3Academy.png"/> </a></li>
|
||||||
|
<li><a href="https://vtex.com/br-pt/"><span>Developed By</span><img class="iconDeveLM3" src="https://agenciamagma.vteximg.com.br/arquivos/logoM3M3Academy.png"/> </a></li>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
trocaTitle() {
|
||||||
|
const tituloCart = document.querySelector(".empty-cart-title");
|
||||||
|
tituloCart.innerHTML = `<h2>SEU CARRINHO ESTÁ VAZIO</h2>`;
|
||||||
|
this.subTitleCart.innerHTML = `<p></p>`;
|
||||||
|
this.buttonCart.innerHTML = `Continuar comprando`;
|
||||||
|
}
|
||||||
|
trocaFrete() {
|
||||||
|
this.freteCarrinho.innerHTML = `Frete`;
|
||||||
|
}
|
||||||
|
trocaUnidade() {
|
||||||
|
this.unidadeCarrinho.innerHTML = `Unidade`;
|
||||||
|
}
|
||||||
|
|
||||||
|
trocaNotiCliente() {
|
||||||
|
this.notiCliente.innerHTML = ``;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
async trocaNoCep() {
|
||||||
|
this.noCep.innerHTML = `Não sei meu código postal`;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
trocaIdentificao() {
|
||||||
|
this.identificacaoUser.innerHTML = `Identificação`;
|
||||||
|
}
|
||||||
|
//slick
|
||||||
|
slickOn() {
|
||||||
|
$(".infoCards").slick({
|
||||||
|
dots: false,
|
||||||
|
infinite: true,
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 1,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
slickOff() {
|
||||||
|
$(".infoCards").slick("unslick");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,14 +8,103 @@ export default class Header {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
console.log(this.item);
|
//console.log(this.item);
|
||||||
|
this.progressBarHTML();
|
||||||
|
await this.progressBarProgress();
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
|
/*
|
||||||
this.item = await waitElement("#my-element", {
|
this.item = await waitElement("#my-element", {
|
||||||
//#my-element pode ser a class ou o id do elemento html qeu vocÊ quer pegar
|
//#my-element pode ser a class ou o id do elemento html qeu vocÊ quer pegar
|
||||||
timeout: 5000, // vai esperar 5 segundos antes de rejeitar a promise
|
timeout: 5000, // vai esperar 5 segundos antes de rejeitar a promise
|
||||||
interval: 1000, // vai verificar a cada 1 segundo se o elemento existe
|
interval: 1000, // vai verificar a cada 1 segundo se o elemento existe
|
||||||
});
|
});*/
|
||||||
|
this.header = await waitElement(".headerCheckout");
|
||||||
|
this.progressBar = await waitElement("#progressBar");
|
||||||
|
}
|
||||||
|
progressBarHTML() {
|
||||||
|
if (this.progressBar && window.innerWidth > 1024) {
|
||||||
|
this.progressBar.innerHTML = `
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="containerLi"><div><p class="progress-bar-text">Meu Carrinho</p><p id="progress-bar-circle-1" class="progress-bar-circle-1"></p><p id="progress-bar-line-1" class="progress-bar-line-1"></p></div></div> </li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<div class="containerLi"><div><p class="progress-bar-text">Dados Pessoais</p><p id="progress-bar-circle-2" class="progress-bar-circle-2"></p></div></div></li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<div class="containerLi"><div><p class="progress-bar-text">Pagamento</p><p id="progress-bar-circle-3" class="progress-bar-circle-3"></p><p id="progress-bar-line-2" class="progress-bar-line-2"></p></div></div> </li>
|
||||||
|
</ul>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
if (this.progressBar && window.innerWidth <= 1024) {
|
||||||
|
this.progressBar.innerHTML = ``;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async progressBarProgress() {
|
||||||
|
if (this.progressBar && window.innerWidth > 1024) {
|
||||||
|
const progressBarLista = document.querySelectorAll("#progressBar ul li");
|
||||||
|
progressBarLista.forEach((li) => {
|
||||||
|
if (window.location.href === "https://m3academy.myvtex.com/checkout/#/cart") {
|
||||||
|
this.trataPonto(li, 1);
|
||||||
|
} else if (
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/email" ||
|
||||||
|
window.location.href == "https://m3academy.myvtex.com/checkout/#/profile" ||
|
||||||
|
window.location.href == "https://m3academy.myvtex.com/checkout/#/shipping"
|
||||||
|
) {
|
||||||
|
this.trataPonto(li, 2);
|
||||||
|
} else if (
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/payment"
|
||||||
|
) {
|
||||||
|
this.trataPonto(li, 3);
|
||||||
|
}
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
if (window.location.hash == "#/cart") {
|
||||||
|
this.trataPonto(li, 1);
|
||||||
|
} else if (
|
||||||
|
window.location.hash == "#/email" ||
|
||||||
|
window.location.hash == "#/profile" ||
|
||||||
|
window.location.hash == "#/shipping"
|
||||||
|
) {
|
||||||
|
this.trataPonto(li, 2);
|
||||||
|
} else if (window.location.hash == "#/payment") {
|
||||||
|
this.trataPonto(li, 3);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
marcarPonto(li, local) {
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-" + local]) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-" + local].classList.add(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
removerPonto(li, local) {
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-" + local]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children[
|
||||||
|
"progress-bar-circle-" + local
|
||||||
|
].classList.contains("active")
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children[
|
||||||
|
"progress-bar-circle-" + local
|
||||||
|
].classList.remove("active");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
trataPonto(li, local) {
|
||||||
|
const indice = [1, 2, 3];
|
||||||
|
let indicesPontoBranco = indice.splice(local - 1, 1);
|
||||||
|
this.marcarPonto(li, local);
|
||||||
|
for (const i of indice) {
|
||||||
|
this.removerPonto(li, i);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,289 +1,366 @@
|
|||||||
.checkout-container {
|
.checkout-container {
|
||||||
.client-pre-email {
|
.client-pre-email {
|
||||||
border-color: $color-gray4;
|
border-color: $color-gray4;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
|
|
||||||
.link-cart {
|
.link-cart {
|
||||||
a {
|
a {
|
||||||
color: $color-black;
|
font-family: $font-family-secundary;
|
||||||
font-size: 14px;
|
font-weight: 400;
|
||||||
|
color: $color-black;
|
||||||
|
font-size: 14px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
&:hover {
|
||||||
|
color: lighen($color-black, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
.pre-email {
|
||||||
color: lighen($color-black, 10);
|
flex-direction: column;
|
||||||
}
|
display: flex;
|
||||||
}
|
align-items: center;
|
||||||
}
|
justify-content: center;
|
||||||
|
|
||||||
.pre-email {
|
h3 {
|
||||||
flex-direction: column;
|
margin-bottom: 16px;
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
h3 {
|
span {
|
||||||
margin-bottom: 16px;
|
font-family: $font-family-secundary;
|
||||||
|
color: $color-black-100;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
small {
|
||||||
color: #303030;
|
font-family: $font-family-secundary;
|
||||||
font-size: 24px;
|
color: $color-black-100;
|
||||||
}
|
font-size: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
small {
|
.client-email {
|
||||||
color: $color-gray4;
|
margin: 0 0 16px;
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.client-email {
|
input {
|
||||||
margin: 0 0 16px;
|
box-shadow: none;
|
||||||
|
color: $color-black-100;
|
||||||
|
font-family: $font-family;
|
||||||
|
padding: 0 16px;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 1px solid $color-black-100;
|
||||||
|
border-radius: 5px 8px 8px 5px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
input {
|
&:placeholder {
|
||||||
box-shadow: none;
|
color: $color-black-100;
|
||||||
color: $color-black;
|
}
|
||||||
font-family: $font-family;
|
|
||||||
padding: 0 16px;
|
|
||||||
border: 2px solid $color-gray3;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border-radius: 5px;
|
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
background-color: $color-black;
|
background-color: $color-blue-300;
|
||||||
border-radius: 5px;
|
border-radius: 0px 8px 8px 0px;
|
||||||
border: none;
|
border: none;
|
||||||
font-family: $font-family;
|
color: $color-black-100;
|
||||||
height: 54px;
|
font-weight: 700;
|
||||||
right: 0;
|
font-family: $font-family;
|
||||||
top: 0;
|
height: 54px;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span.help.error {
|
span.help.error {
|
||||||
color: red;
|
font-family: $font-family;
|
||||||
}
|
color: $color-red;
|
||||||
}
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.emailInfo {
|
.emailInfo {
|
||||||
padding: 16px;
|
margin-top: 31px;
|
||||||
background-color: $color-white;
|
padding: 16px;
|
||||||
border: 1px solid $color-gray4;
|
background-color: $color-white;
|
||||||
border-radius: 0;
|
border: 1px solid $color-black-100;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
color: #303030;
|
color: $color-black-100;
|
||||||
margin: 0 0 8px 0;
|
font-family: $font-family;
|
||||||
}
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
margin: 0 0 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
span {
|
span {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
}
|
font-family: $font-family;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
i::before {
|
i::before {
|
||||||
color: $color-black;
|
color: $color-blue-300;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i::before {
|
i::before {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.shipping-data,
|
.shipping-data,
|
||||||
.payment-data,
|
.payment-data,
|
||||||
.client-profile-data {
|
.client-profile-data {
|
||||||
.accordion-group {
|
.accordion-group {
|
||||||
border-radius: 0;
|
border-radius: 8px;
|
||||||
border: 1px solid $color-gray4;
|
border: 1px solid $color-gray3;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
|
|
||||||
.accordion-heading {
|
.accordion-heading {
|
||||||
span {
|
span {
|
||||||
color: #303030;
|
font-family: $font-family-secundary;
|
||||||
margin-bottom: 8px;
|
color: $color-black;
|
||||||
padding: 0;
|
margin-bottom: 8px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
i::before {
|
i::before {
|
||||||
fill: #303030;
|
display: none;
|
||||||
}
|
fill: white;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: #303030;
|
background-color: $color-white;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: none;
|
border: none;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 6px 5px 6px 8px;
|
padding: 6px 5px 6px 8px;
|
||||||
}
|
.icon-edit {
|
||||||
}
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-color: white;
|
||||||
|
color: white;
|
||||||
|
content: url(" https://agenciamagma.vteximg.com.br/arquivos/lapisM3Academy.png");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.accordion-inner {
|
.accordion-inner {
|
||||||
padding: 0;
|
padding: 0; /*
|
||||||
|
#opt-in-newsletter {
|
||||||
|
right: 200px;
|
||||||
|
}*/
|
||||||
|
/* General configurations */
|
||||||
|
.newsletter {
|
||||||
|
margin-bottom: 35px;
|
||||||
|
#opt-in-newsletter {
|
||||||
|
width: 18px;
|
||||||
|
height: 20px;
|
||||||
|
margin-right: 8px;
|
||||||
|
position: relative;
|
||||||
|
top: -5px;
|
||||||
|
}
|
||||||
|
.newsletter-text {
|
||||||
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 12px;
|
||||||
|
color: $color-gray100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.client-notice {
|
||||||
|
color: $color-black;
|
||||||
|
}
|
||||||
|
|
||||||
/* General configurations */
|
p {
|
||||||
|
label {
|
||||||
|
color: $color-gray2;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.client-notice {
|
select,
|
||||||
color: $color-black;
|
input {
|
||||||
}
|
max-width: 100%;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid $color-gray3;
|
||||||
|
box-shadow: none;
|
||||||
|
height: 42px;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
.help.error {
|
||||||
label {
|
color: red;
|
||||||
color: $color-black;
|
}
|
||||||
font-weight: 500;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
select,
|
.box-client-info-pj {
|
||||||
input {
|
.link a#is-corporate-client,
|
||||||
border-radius: 0;
|
.link a#not-corporate-client {
|
||||||
border: 1px solid $color-gray4;
|
display: none;
|
||||||
box-shadow: none;
|
color: $color-black;
|
||||||
}
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.help.error {
|
.state-inscription-box span {
|
||||||
color: red;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.box-client-info-pj {
|
button.submit {
|
||||||
.link a#is-corporate-client,
|
width: 100%;
|
||||||
.link a#not-corporate-client {
|
border: none;
|
||||||
color: $color-black;
|
font-family: $font-family;
|
||||||
font-weight: 500;
|
font-size: 14px;
|
||||||
text-decoration: underline;
|
font-weight: 700;
|
||||||
}
|
color: $color-white;
|
||||||
}
|
border-radius: 8px;
|
||||||
|
background: $color-blue-300;
|
||||||
|
margin-top: 8px;
|
||||||
|
outline: none;
|
||||||
|
transition: all 0.2s linear;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
.state-inscription-box span {
|
&:hover {
|
||||||
font-weight: 500;
|
background: lighten($color-black, 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
button.submit {
|
&:active {
|
||||||
border: none;
|
background: darken($color-black, 5);
|
||||||
border-radius: 5px;
|
}
|
||||||
background: $color-black;
|
}
|
||||||
margin-top: 8px;
|
|
||||||
outline: none;
|
|
||||||
transition: all 0.2s linear;
|
|
||||||
|
|
||||||
&:hover {
|
/* Shipping configurations */
|
||||||
background: lighten($color-black, 5);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
.ship-postalCode small a {
|
||||||
background: darken($color-black, 5);
|
color: #303030;
|
||||||
}
|
font-weight: 500;
|
||||||
}
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
/* Shipping configurations */
|
.vtex-omnishipping-1-x-deliveryGroup {
|
||||||
|
p {
|
||||||
|
color: #303030;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
.ship-postalCode small a {
|
.shp-lean {
|
||||||
color: #303030;
|
border: 1px solid $color-gray4;
|
||||||
font-weight: 500;
|
border-radius: 0;
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryGroup {
|
label {
|
||||||
p {
|
background-color: $color-white;
|
||||||
color: #303030;
|
box-shadow: none;
|
||||||
font-size: 14px;
|
color: #303030;
|
||||||
font-weight: 500;
|
padding: 8px 12px;
|
||||||
}
|
|
||||||
|
|
||||||
.shp-lean {
|
svg path {
|
||||||
border: 1px solid $color-gray4;
|
fill: #d8c8ac;
|
||||||
border-radius: 0;
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
label {
|
.delivery-address-title {
|
||||||
background-color: $color-white;
|
color: #303030;
|
||||||
box-shadow: none;
|
font-size: 14px;
|
||||||
color: #303030;
|
font-weight: 500;
|
||||||
padding: 8px 12px;
|
}
|
||||||
|
|
||||||
svg path {
|
.shp-summary-group-info {
|
||||||
fill: #d8c8ac;
|
border-color: $color-gray4;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.delivery-address-title {
|
.address-summary {
|
||||||
color: #303030;
|
background: none;
|
||||||
font-size: 14px;
|
border-color: $color-gray4;
|
||||||
font-weight: 500;
|
border-radius: 0;
|
||||||
}
|
color: #303030;
|
||||||
|
padding: 12px;
|
||||||
|
|
||||||
.shp-summary-group-info {
|
@include mq(md, max) {
|
||||||
border-color: $color-gray4;
|
background-position: 8px 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.address-summary {
|
a {
|
||||||
background: none;
|
color: #303030;
|
||||||
border-color: $color-gray4;
|
font-weight: 500;
|
||||||
border-radius: 0;
|
text-decoration: underline;
|
||||||
color: #303030;
|
}
|
||||||
padding: 12px;
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
.shp-summary-group-price,
|
||||||
background-position: 8px 9px;
|
.shp-summary-package {
|
||||||
}
|
color: $color-gray4;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
.shp-summary-group-price {
|
||||||
color: #303030;
|
padding-right: 16px;
|
||||||
font-weight: 500;
|
}
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.shp-summary-group-price,
|
.shp-summary-package {
|
||||||
.shp-summary-package {
|
padding-left: 16px;
|
||||||
color: $color-gray4;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.shp-summary-group-price {
|
.vtex-omnishipping-1-x-summaryChange {
|
||||||
padding-right: 16px;
|
border-color: #303030;
|
||||||
}
|
color: #303030;
|
||||||
|
}
|
||||||
|
|
||||||
.shp-summary-package {
|
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
||||||
padding-left: 16px;
|
background-color: #41115d;
|
||||||
}
|
border: 1px solid #d8c8ac;
|
||||||
|
}
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-summaryChange {
|
.vtex-omnishipping-1-x-deliveryOptionActive {
|
||||||
border-color: #303030;
|
background: $color-white;
|
||||||
color: #303030;
|
font-family: $font-family;
|
||||||
}
|
color: #41115d;
|
||||||
|
border: 1px solid $color-black;
|
||||||
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
background-color: #d8c8ac;
|
border-radius: 100px;
|
||||||
border: 1px solid #d8c8ac;
|
text-shadow: 1.3px 1px lighten($color-black, 50);
|
||||||
}
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
.vtex-omnishipping-1-x-deliveryOptionActive {
|
}
|
||||||
text-shadow: 1.3px 1px lighten($color-black, 50);
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@ html {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer .footerCheckout__wrapper {
|
footer .footerCheckout__wrapper {
|
||||||
width: 94.9734%;
|
width: 100%;
|
||||||
margin: auto auto 0 auto;
|
margin: auto auto 0 auto;
|
||||||
}
|
}
|
||||||
footer .footerCheckout__prateleira,
|
footer .footerCheckout__prateleira,
|
||||||
@ -68,13 +68,14 @@ body {
|
|||||||
|
|
||||||
#cart-title,
|
#cart-title,
|
||||||
#orderform-title {
|
#orderform-title {
|
||||||
color: $color-gray2;
|
color: $color-black-100;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 36px;
|
font-size: 24px;
|
||||||
line-height: 42px;
|
line-height: 33px;
|
||||||
margin: 40px 0 30px;
|
margin: 40px 0 30px;
|
||||||
letter-spacing: 0.1em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
|
@ -43,9 +43,10 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
display: block;
|
display: flex;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
gap: 16px;
|
||||||
|
|
||||||
&:before,
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
@ -104,11 +105,16 @@
|
|||||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg")
|
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg")
|
||||||
no-repeat center center;
|
no-repeat center center;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
left: 10px;
|
left: 23px;
|
||||||
|
line-height: 27px;
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
.slick-next {
|
.slick-next {
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
right: 10px;
|
right: 17px;
|
||||||
|
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-mini-M3Academy.svg");
|
||||||
|
line-height: 27px;
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
.slick-arrow.slick-hidden {
|
.slick-arrow.slick-hidden {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -1,23 +1,141 @@
|
|||||||
/* _footer.scss */
|
/* _footer.scss */
|
||||||
|
|
||||||
.footerCheckout {
|
.footerCheckout {
|
||||||
border-top: none;
|
margin: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-top: 100%;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
|
margin-top: auto;
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
margin: 50px 0 0 0 !important;
|
||||||
|
border-top: 1px solid #000000;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
padding: 27px 32px 24px 32px;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
//margin: 0 0 0 16px !important;
|
||||||
|
}
|
||||||
|
&__prateleira {
|
||||||
|
//display: none;
|
||||||
|
margin: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
.prateleira__subtitle {
|
||||||
|
font-size: 24px;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #000;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
.infoCards {
|
||||||
|
width: 80%;
|
||||||
|
display: flex;
|
||||||
|
height: 390px;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
margin-bottom: 54px;
|
||||||
|
.infoCard {
|
||||||
|
width: 100%;
|
||||||
|
height: 390px;
|
||||||
|
//border: 1px solid #000;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
&__image {
|
||||||
|
min-width: 100%;
|
||||||
|
height: 242px;
|
||||||
|
object-fit: fit;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__text {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #000;
|
||||||
|
font-weight: 400;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__tamanhos {
|
||||||
|
margin-top: 20px;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
list-style: none;
|
||||||
|
margin-left: 0%;
|
||||||
|
gap: 5px;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
&__tamanho {
|
||||||
|
background-color: $color-blue-300;
|
||||||
|
border-radius: 8px;
|
||||||
|
height: 28px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
&__numero {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
&__link {
|
||||||
|
color: $color-white;
|
||||||
|
margin: 4px;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__link {
|
||||||
|
padding: 12px 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 17px;
|
||||||
|
margin-top: 17px;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
color: $color-white;
|
||||||
|
background-color: $color-blue-300;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
&::hoover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__address {
|
&__address {
|
||||||
color: $color-gray2;
|
color: $color-black;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
max-width: 40%;
|
width: 269px;
|
||||||
|
margin-right: 45px;
|
||||||
|
&:span {
|
||||||
|
width: 269px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
@ -26,14 +144,21 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__stamps {
|
&__stamps {
|
||||||
|
width: 31.56%;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
margin-right: 166px;
|
||||||
|
flex-direction: row;
|
||||||
|
//margin-right: 189px;
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin: 0 0 0 0 !important;
|
||||||
|
}
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
margin-bottom: 12px;
|
//margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__divider {
|
&__divider {
|
||||||
@ -43,19 +168,31 @@
|
|||||||
margin: 0 8px;
|
margin: 0 8px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
}
|
}
|
||||||
|
&__payments {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.IconCredImg {
|
||||||
|
width: 12.25%;
|
||||||
|
}
|
||||||
|
.IconVtexImg {
|
||||||
|
width: 87%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__developedBy {
|
&__developedBy {
|
||||||
|
width: 26.6%;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
li:last-child {
|
li:last-child {
|
||||||
margin-left: 16px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
width: 120px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -69,6 +206,69 @@
|
|||||||
span {
|
span {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
.iconDevV {
|
||||||
|
width: 30.65%;
|
||||||
|
}
|
||||||
|
.iconDeveLM3 {
|
||||||
|
width: 30.65%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*Cart*/
|
||||||
|
.cart-items th {
|
||||||
|
font-family: $font-family-secundary !important;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-black;
|
||||||
|
}
|
||||||
|
.cart-template .cart-items td.quantity .icon-plus-sign:before {
|
||||||
|
color: $color-blue-300;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
.product {
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-black;
|
||||||
|
}*/
|
||||||
|
/*CSS Body*/
|
||||||
|
.container-cart {
|
||||||
|
#cart-title {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty-cart-content {
|
||||||
|
display: flex;
|
||||||
|
margin-top: 170px;
|
||||||
|
.empty-cart-title {
|
||||||
|
margin: 0 !important;
|
||||||
|
h2 {
|
||||||
|
font-family: $font-family;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.empty-cart-links {
|
||||||
|
margin-top: 32px;
|
||||||
|
#cart-choose-products {
|
||||||
|
margin: 0;
|
||||||
|
padding: 16px 64px;
|
||||||
|
background-color: $color-white;
|
||||||
|
color: $color-black;
|
||||||
|
border: 1px solid #000;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,110 @@
|
|||||||
/* _header.scss */
|
/* _header.scss */
|
||||||
.headerCheckout {
|
.headerCheckout {
|
||||||
|
margin: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
.container {
|
.container {
|
||||||
width: auto !important;
|
margin: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
margin: 30px 0 0 0;
|
||||||
|
width: 100%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
height: 1px;
|
||||||
|
border-bottom: 1px solid #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progressBar {
|
||||||
|
width: 446px;
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
li .containerLi {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
li.central .containerLi {
|
||||||
|
align-items: center;
|
||||||
|
margin-left: 7px;
|
||||||
|
}
|
||||||
|
li:last-child .containerLi {
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
li .containerLi div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
li.central {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
li #progress-bar-circle-1,
|
||||||
|
li #progress-bar-circle-2,
|
||||||
|
li #progress-bar-circle-3 {
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
border: 1px solid #000;
|
||||||
|
border-radius: 50%;
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
li #progress-bar-circle-1.active,
|
||||||
|
li #progress-bar-circle-2.active,
|
||||||
|
li #progress-bar-circle-3.active {
|
||||||
|
border: none;
|
||||||
|
background-color: #000;
|
||||||
|
}
|
||||||
|
li .progress-bar-line-1 {
|
||||||
|
position: absolute;
|
||||||
|
left: 58%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
bottom: 4px;
|
||||||
|
width: 176px;
|
||||||
|
height: 1px;
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
}
|
||||||
|
li .progress-bar-line-2 {
|
||||||
|
position: absolute;
|
||||||
|
right: 60%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
bottom: 4px;
|
||||||
|
width: 171px;
|
||||||
|
height: 1px;
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
color: $color-black-100;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
|
margin-top: 30px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__logo {
|
&__logo {
|
||||||
|
padding-left: 131px;
|
||||||
img {
|
img {
|
||||||
height: 52px;
|
height: 52px;
|
||||||
width: auto;
|
width: auto;
|
||||||
@ -17,19 +112,23 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__safeBuy {
|
&__safeBuy {
|
||||||
|
padding-right: 131px;
|
||||||
|
display: flex;
|
||||||
span {
|
span {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 16px;
|
||||||
color: $color-gray;
|
color: $color-black;
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
img {
|
||||||
|
width: 10%;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
|
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
|
||||||
$font-family: "Open Sans", sans-serif;
|
$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;
|
$color-black: #292929;
|
||||||
|
$color-black-100: #000;
|
||||||
$color-white: #fff;
|
$color-white: #fff;
|
||||||
|
|
||||||
$color-gray: #6c6c6c;
|
$color-gray: #6c6c6c;
|
||||||
@ -14,25 +14,27 @@ $color-gray2: #7d7d7d;
|
|||||||
$color-gray3: #f0f0f0;
|
$color-gray3: #f0f0f0;
|
||||||
$color-gray4: #8d8d8d;
|
$color-gray4: #8d8d8d;
|
||||||
$color-gray5: #e5e5e5;
|
$color-gray5: #e5e5e5;
|
||||||
|
$color-gray100: #808080;
|
||||||
|
$color-red: #ff0000;
|
||||||
$color-blue: #4267b2;
|
$color-blue: #4267b2;
|
||||||
|
$color-blue-300: #00c8ff;
|
||||||
|
|
||||||
$color-green: #4caf50;
|
$color-green: #4caf50;
|
||||||
|
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
$grid-breakpoints: (
|
$grid-breakpoints: (
|
||||||
xs: 0,
|
xs: 0,
|
||||||
cstm: 400,
|
cstm: 400,
|
||||||
sm: 576px,
|
sm: 576px,
|
||||||
md: 768px,
|
md: 768px,
|
||||||
lg: 992px,
|
lg: 992px,
|
||||||
xl: 1200px
|
xl: 1200px,
|
||||||
) !default;
|
) !default;
|
||||||
|
|
||||||
$z-index: (
|
$z-index: (
|
||||||
level1: 5,
|
level1: 5,
|
||||||
level2: 10,
|
level2: 10,
|
||||||
level3: 15,
|
level3: 15,
|
||||||
level4: 20,
|
level4: 20,
|
||||||
level5: 25
|
level5: 25,
|
||||||
) !default;
|
) !default;
|
||||||
|
Loading…
Reference in New Issue
Block a user