diff --git a/checkout/src/arquivos/js/checkout.js b/checkout/src/arquivos/js/checkout.js index 063678e..c8162e9 100644 --- a/checkout/src/arquivos/js/checkout.js +++ b/checkout/src/arquivos/js/checkout.js @@ -2,12 +2,11 @@ import CheckoutUI from "./components/CheckoutUI"; import { Container } from "m3-utils"; import "slick-carousel"; import Header from "./components/Header"; -import Body from "./components/Body"; import Footer from "./components/Footer"; const m3Checkout = new Container({ appName: "m3-checkout", - components: [CheckoutUI, Header, Body, Footer], + components: [CheckoutUI, Header, Footer], }); m3Checkout.start(); diff --git a/checkout/src/arquivos/js/components/Body.js b/checkout/src/arquivos/js/components/Body.js deleted file mode 100644 index 4378375..0000000 --- a/checkout/src/arquivos/js/components/Body.js +++ /dev/null @@ -1,16 +0,0 @@ -export default class Body { - constructor() { - this.init(); - } - - async init() { - await this.selectors(); - } - async selectors() { - this.titleCart = await waitElement(".empty-cart-title"); - } - - trocaTitle() { - this.titleCart.innerHTML = ``; - } -} diff --git a/checkout/src/arquivos/js/components/Footer.js b/checkout/src/arquivos/js/components/Footer.js index 00b47af..1832739 100644 --- a/checkout/src/arquivos/js/components/Footer.js +++ b/checkout/src/arquivos/js/components/Footer.js @@ -7,38 +7,109 @@ export default class Footer { async init() { await this.selectors(); - // this.onUpdate(); - await this.pegarInfo( + 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() { //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 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() { //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 // 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 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 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) { - 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); } + ligaDesligaElementos(observado) { + if (observado.style.display === "none") { + observado.style.display = "block"; + } else { + observado.style.display = "none"; + } + } async addCarrossel() { const elemento = await waitElement("#my-element"); $(elemento).slick({ @@ -49,6 +120,7 @@ export default class Footer { produtos(data) { return { imagem: data["items"][0]["images"][0]["imageUrl"], + link: data["link"], nome: data["productName"], tamanho: data["items"].map((val) => val["name"]), }; @@ -61,6 +133,36 @@ export default class Footer { //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 = `
  • +

    ${ + i["nome"] + }

    + ${this.tamanhosProdutos(i["tamanho"], i["link"])} + VER PRODUTO
  • `; + listaInfocards += elem; + } + return listaInfocards; + } + tamanhosProdutos(tam, link) { + let listaTamanhos = ``; + return listaTamanhos; + } + + async renderInfoCards(Items) { + this.prateleiraInfoCards.innerHTML = `

    Você também pode gostar:

    `; + this.slickOn(); } renderIconCreditCards() { @@ -83,4 +185,41 @@ export default class Footer {
  • Powered By
  • Developed By
  • `; } + + trocaTitle() { + const tituloCart = document.querySelector(".empty-cart-title"); + tituloCart.innerHTML = `

    SEU CARRINHO ESTÁ VAZIO

    `; + this.subTitleCart.innerHTML = `

    `; + 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"); + } } diff --git a/checkout/src/arquivos/sass/checkout.scss b/checkout/src/arquivos/sass/checkout.scss index 9ca7fc6..771070c 100644 --- a/checkout/src/arquivos/sass/checkout.scss +++ b/checkout/src/arquivos/sass/checkout.scss @@ -1,6 +1,5 @@ @import "./utils/all"; @import "./lib/slick"; @import "./partials/header"; -@import "./partials/body"; @import "./partials/footer"; @import "./checkout/checkout.scss"; diff --git a/checkout/src/arquivos/sass/checkout/_checkout-autenticacao.scss b/checkout/src/arquivos/sass/checkout/_checkout-autenticacao.scss index 92f0375..8acd078 100644 --- a/checkout/src/arquivos/sass/checkout/_checkout-autenticacao.scss +++ b/checkout/src/arquivos/sass/checkout/_checkout-autenticacao.scss @@ -1,289 +1,366 @@ .checkout-container { - .client-pre-email { - border-color: $color-gray4; - font-family: $font-family; - padding-top: 8px; + .client-pre-email { + border-color: $color-gray4; + font-family: $font-family; + padding-top: 8px; - .link-cart { - a { - color: $color-black; - font-size: 14px; + .link-cart { + a { + font-family: $font-family-secundary; + font-weight: 400; + color: $color-black; + font-size: 14px; + text-transform: uppercase; + &:hover { + color: lighen($color-black, 10); + } + } + } - &:hover { - color: lighen($color-black, 10); - } - } - } + .pre-email { + flex-direction: column; + display: flex; + align-items: center; + justify-content: center; - .pre-email { - flex-direction: column; - display: flex; - align-items: center; - justify-content: center; + h3 { + margin-bottom: 16px; - h3 { - margin-bottom: 16px; + span { + font-family: $font-family-secundary; + color: $color-black-100; + font-size: 24px; + font-weight: 400; + text-transform: uppercase; + } - span { - color: #303030; - font-size: 24px; - } + small { + font-family: $font-family-secundary; + color: $color-black-100; + font-size: 24px; + font-weight: 400; + text-transform: uppercase; + } + } + } - small { - color: $color-gray4; - } - } - } + .client-email { + margin: 0 0 16px; - .client-email { - margin: 0 0 16px; + input { + 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 { - box-shadow: none; - color: $color-black; - font-family: $font-family; - padding: 0 16px; - border: 2px solid $color-gray3; - box-sizing: border-box; - border-radius: 5px; + &:placeholder { + color: $color-black-100; + } - @media (max-width: 490px) { - width: auto; - } - } + @media (max-width: 490px) { + width: auto; + } + } - button { - background-color: $color-black; - border-radius: 5px; - border: none; - font-family: $font-family; - height: 54px; - right: 0; - top: 0; + button { + background-color: $color-blue-300; + border-radius: 0px 8px 8px 0px; + border: none; + color: $color-black-100; + font-weight: 700; + font-family: $font-family; + height: 54px; + right: 0; + top: 0; + text-transform: uppercase; + &:hover { + cursor: pointer; + } - @media (max-width: 490px) { - height: 48px; - margin: 0; - position: absolute; - } - } + @media (max-width: 490px) { + height: 48px; + margin: 0; + position: absolute; + } + } - span.help.error { - color: red; - } - } + span.help.error { + font-family: $font-family; + color: $color-red; + font-size: 12px; + font-weight: 700; + } + } - .emailInfo { - padding: 16px; - background-color: $color-white; - border: 1px solid $color-gray4; - border-radius: 0; + .emailInfo { + margin-top: 31px; + padding: 16px; + background-color: $color-white; + border: 1px solid $color-black-100; + border-radius: 5px; - h3 { - color: #303030; - margin: 0 0 8px 0; - } + h3 { + color: $color-black-100; + font-family: $font-family; + font-weight: 700; + font-size: 12px; + line-height: 16px; + margin: 0 0 8px 0; + } - ul { - margin: 0; + ul { + margin: 0; - li { - span { - color: $color-black; - } + li { + span { + color: $color-black; + font-family: $font-family; + font-weight: 700; + font-size: 12px; + } - i::before { - color: $color-black; - font-size: 1rem; - opacity: 1; - } - } - } + i::before { + color: $color-blue-300; + font-size: 1rem; + opacity: 1; + } + } + } - i::before { - color: $color-black; - font-size: 6rem; - opacity: 0.5; - } - } - } + i::before { + color: $color-black; + font-size: 6rem; + opacity: 0.5; + } + } + } - .shipping-data, - .payment-data, - .client-profile-data { - .accordion-group { - border-radius: 0; - border: 1px solid $color-gray4; - font-family: $font-family; - padding: 16px; + .shipping-data, + .payment-data, + .client-profile-data { + .accordion-group { + border-radius: 8px; + border: 1px solid $color-gray3; + font-family: $font-family; + padding: 16px; - .accordion-heading { - span { - color: #303030; - margin-bottom: 8px; - padding: 0; + .accordion-heading { + span { + font-family: $font-family-secundary; + color: $color-black; + margin-bottom: 8px; + font-size: 16px; + font-weight: 400; + padding: 0; - i::before { - fill: #303030; - } - } + i::before { + display: none; + fill: white; + } + } - a { - align-items: center; - background-color: #303030; - border-radius: 8px; - border: none; - color: $color-white; - display: flex; - justify-content: center; - padding: 6px 5px 6px 8px; - } - } + a { + align-items: center; + background-color: $color-white; + border-radius: 8px; + border: none; + color: $color-white; + display: flex; + justify-content: center; + 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 { - padding: 0; + .accordion-inner { + 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 { - color: $color-black; - } + select, + input { + max-width: 100%; + border-radius: 5px; + border: 1px solid $color-gray3; + box-shadow: none; + height: 42px; + } - p { - label { - color: $color-black; - font-weight: 500; - } + .help.error { + color: red; + } + } - select, - input { - border-radius: 0; - border: 1px solid $color-gray4; - box-shadow: none; - } + .box-client-info-pj { + .link a#is-corporate-client, + .link a#not-corporate-client { + display: none; + color: $color-black; + font-weight: 500; + text-decoration: underline; + } + } - .help.error { - color: red; - } - } + .state-inscription-box span { + font-weight: 500; + } - .box-client-info-pj { - .link a#is-corporate-client, - .link a#not-corporate-client { - color: $color-black; - font-weight: 500; - text-decoration: underline; - } - } + button.submit { + width: 100%; + border: none; + font-family: $font-family; + font-size: 14px; + 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 { - font-weight: 500; - } + &:hover { + background: lighten($color-black, 5); + } - button.submit { - border: none; - border-radius: 5px; - background: $color-black; - margin-top: 8px; - outline: none; - transition: all 0.2s linear; + &:active { + background: darken($color-black, 5); + } + } - &:hover { - background: lighten($color-black, 5); - } + /* Shipping configurations */ - &:active { - background: darken($color-black, 5); - } - } + .ship-postalCode small a { + 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 { - color: #303030; - font-weight: 500; - text-decoration: underline; - } + .shp-lean { + border: 1px solid $color-gray4; + border-radius: 0; - .vtex-omnishipping-1-x-deliveryGroup { - p { - color: #303030; - font-size: 14px; - font-weight: 500; - } + label { + background-color: $color-white; + box-shadow: none; + color: #303030; + padding: 8px 12px; - .shp-lean { - border: 1px solid $color-gray4; - border-radius: 0; + svg path { + fill: #d8c8ac; + } + } + } + } - label { - background-color: $color-white; - box-shadow: none; - color: #303030; - padding: 8px 12px; + .delivery-address-title { + color: #303030; + font-size: 14px; + font-weight: 500; + } - svg path { - fill: #d8c8ac; - } - } - } - } + .shp-summary-group-info { + border-color: $color-gray4; + } - .delivery-address-title { - color: #303030; - font-size: 14px; - font-weight: 500; - } + .address-summary { + background: none; + border-color: $color-gray4; + border-radius: 0; + color: #303030; + padding: 12px; - .shp-summary-group-info { - border-color: $color-gray4; - } + @include mq(md, max) { + background-position: 8px 9px; + } - .address-summary { - background: none; - border-color: $color-gray4; - border-radius: 0; - color: #303030; - padding: 12px; + a { + color: #303030; + font-weight: 500; + text-decoration: underline; + } + } - @include mq(md, max) { - background-position: 8px 9px; - } + .shp-summary-group-price, + .shp-summary-package { + color: $color-gray4; + } - a { - color: #303030; - font-weight: 500; - text-decoration: underline; - } - } + .shp-summary-group-price { + padding-right: 16px; + } - .shp-summary-group-price, - .shp-summary-package { - color: $color-gray4; - } + .shp-summary-package { + padding-left: 16px; + } - .shp-summary-group-price { - padding-right: 16px; - } + .vtex-omnishipping-1-x-summaryChange { + border-color: #303030; + color: #303030; + } - .shp-summary-package { - padding-left: 16px; - } + .vtex-omnishipping-1-x-deliveryChannelsToggle { + background-color: #41115d; + border: 1px solid #d8c8ac; + } - .vtex-omnishipping-1-x-summaryChange { - border-color: #303030; - color: #303030; - } - - .vtex-omnishipping-1-x-deliveryChannelsToggle { - background-color: #d8c8ac; - border: 1px solid #d8c8ac; - } - - .vtex-omnishipping-1-x-deliveryOptionActive { - text-shadow: 1.3px 1px lighten($color-black, 50); - } - } - } - } + .vtex-omnishipping-1-x-deliveryOptionActive { + background: $color-white; + font-family: $font-family; + color: #41115d; + border: 1px solid $color-black; + box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); + border-radius: 100px; + text-shadow: 1.3px 1px lighten($color-black, 50); + text-transform: uppercase; + } + } + } + } } diff --git a/checkout/src/arquivos/sass/checkout/_checkout-carrinho.scss b/checkout/src/arquivos/sass/checkout/_checkout-carrinho.scss index 195f487..07589e8 100644 --- a/checkout/src/arquivos/sass/checkout/_checkout-carrinho.scss +++ b/checkout/src/arquivos/sass/checkout/_checkout-carrinho.scss @@ -111,10 +111,11 @@ } th { + font-family: $font-family-secundary; color: $color-black; padding: 0 0 16px; font-style: normal; - font-weight: bold; + font-weight: normal; font-size: 14px; line-height: 16px; @@ -147,276 +148,571 @@ } } - .product-name { - padding-right: 0; + @include mq(lg, max) { + width: 250px; + } - @include mq(lg, max) { - width: 250px; + a { + color: #000; + font-style: normal; + font-weight: normal; + font-size: 12px; + line-height: 14px; + transition: ease-in 0.22s all; + + &:hover { + color: darken($color-black, 10); + text-decoration: none; } - a { - color: $color-blue; - font-style: normal; - font-weight: normal; - font-size: 12px; - line-height: 14px; - transition: ease-in 0.22s all; - - &:hover { - color: darken($color-blue, 10); - text-decoration: none; - } - - @media (max-width: 490px) { - margin-left: 23px; - } - } - - .brand, - .seller { - display: none !important; + @media (max-width: 490px) { + margin-left: 23px; } } - td.shipping-date { + .brand, + .seller { + display: none !important; + } + } + + td.shipping-date { + color: $color-gray2; + font-size: 12px; + line-height: 14px; + + @include mq(md, max) { + display: none; + } + } + + .product-price { + min-width: 100px; + @include mq(md, max) { + min-width: 78px; + } + @media (max-width: 490px) { + position: absolute; + bottom: 0; + right: 0; + } + + span.list-price { color: $color-gray2; font-size: 12px; line-height: 14px; - - @include mq(md, max) { - display: none; - } - } - - .product-price { - min-width: 100px; - @include mq(md, max) { - min-width: 78px; - } - @media (max-width: 490px) { - position: absolute; - bottom: 0; - right: 0; - } - - span.list-price { - color: $color-gray2; + text-decoration-line: line-through; + @include mq(sm, max) { font-size: 12px; line-height: 14px; - text-decoration-line: line-through; - @include mq(sm, max) { - font-size: 12px; - line-height: 14px; - } - - .old-product-price-label { - text-transform: lowercase; - } - } - } - - td.quantity { - align-items: center; - border: 1px solid $color-gray3; - border-radius: 0; - box-sizing: border-box; - display: flex; - justify-content: center; - margin: 6px auto 0; - max-height: 38px; - max-width: 118px; - padding: 0; - width: max-content !important; - - @media (max-width: 490px) { - margin-left: 84px !important; } - input { - background-color: $color-white; - border: 1px solid $color-gray3; - border-radius: 0; - border-width: 0 1px; - display: block; - max-height: 38px; - margin: 0 !important; - padding: 8px 0; - width: 38px; - color: $color-gray2; - box-shadow: none; - - @include mq(lg, max) { - width: 24px !important; - } - } - - .icon-plus-sign, - .icon-minus-sign { - &::before { - color: $color-black; - display: block; - font-weight: 500; - padding: 1px 12px; - } - } - - .icon-minus-sign { - &:before { - content: "-"; - font-size: 16px; - } - } - - .icon-plus-sign { - &:before { - content: "+"; - font-size: 14px; - } - } - - .item-quantity-change { - @media (max-width: 979px) and (min-width: 768px) { - position: inherit; - bottom: inherit; - left: inherit; - height: inherit; - width: inherit; - top: inherit; - } - - @media (max-width: 490px) { - padding: 0; - } - } - } - - .quantity-price, - .best-price { - .icon-question-sign { - display: none; - } - span { - font-style: normal; - font-weight: normal; - font-size: 14px; - line-height: 16px; - color: $color-black; - } - } - - .quantity-price { - @include mq(md, max) { - display: none; - } - } - - .item-remove { - @media (max-width: 490px) { - top: 0; - } - .icon::before { - color: $color-gray4; - font-size: 15px; - - @include mq(md, max) { - font-size: 18px; - } - } - } - - .item-unavailable-message { - background-color: #d8c8ac; - color: $color-white; - - .icon-warning-sign { - color: #bb4f4f; - } - - .top-arrow { - border-bottom-color: #d8c8ac; + .old-product-price-label { + text-transform: lowercase; } } } - .summary { - .cart-more-options { - margin: 0; - width: max-content; + td.quantity { + align-items: center; + border: 1px solid $color-gray3; + border-radius: 0; + box-sizing: border-box; + display: flex; + justify-content: center; + margin: 6px auto 0; + max-height: 38px; + max-width: 118px; + padding: 0; + width: max-content !important; - .srp-container { - padding: 0 0 0 10px; + @media (max-width: 490px) { + margin-left: 84px !important; + } + + input { + background-color: $color-white; + border: 1px solid $color-gray3; + border-radius: 0; + border-width: 0 1px; + display: block; + max-height: 38px; + margin: 0 !important; + padding: 8px 0; + width: 38px; + font-family: $font-family-secundary; + color: $color-gray2; + box-shadow: none; + + @include mq(lg, max) { + width: 24px !important; + } + } + + .icon-plus-sign, + .icon-minus-sign { + &::before { + color: $color-black; + display: block; + font-weight: 500; + padding: 1px 12px; + } + } + + .icon-minus-sign { + &:before { + color: $color-blue-300; + font-size: 20px; + &:hover { + cursor: pointer; + } + } + } + + .icon-plus-sign { + &:before { + font-size: 20px; + color: $color-blue-300; + &:hover { + cursor: pointer; + } + } + } + + .item-quantity-change { + @media (max-width: 979px) and (min-width: 768px) { + position: inherit; + bottom: inherit; + left: inherit; + height: inherit; + width: inherit; + top: inherit; + } + + @media (max-width: 490px) { + padding: 0; + } + } + } + + .quantity-price, + .best-price { + .icon-question-sign { + display: none; + } + span { + font-family: $font-family-secundary; + + font-weight: 400; + font-size: 14px; + line-height: 16px; + color: $color-black; + text-transform: lowercase; + } + .total-selling-price { + text-transform: uppercase; + + font-weight: 700; + } + } + + .quantity-price { + @include mq(md, max) { + display: none; + } + } + + .item-remove { + @media (max-width: 490px) { + top: 0; + } + .icon::before { + color: $color-gray4; + font-size: 15px; + + @include mq(md, max) { + font-size: 18px; + } + } + } + + .item-unavailable-message { + background-color: #d8c8ac; + color: $color-white; + + .icon-warning-sign { + color: #bb4f4f; + } + + .top-arrow { + border-bottom-color: #d8c8ac; + } + } +} + +.summary { + .cart-more-options { + margin: 0; + width: max-content; + + .srp-container { + padding: 0 0 0 10px; + + @include mq(md, max) { + padding: 0 16px; + } + + .srp-main-title { + font-family: $font-family; + margin: 32px 0 12px; + font-style: normal; + font-weight: normal; + font-size: 24px; + line-height: 28px; + color: $color-black-100; @include mq(md, max) { - padding: 0 16px; - } - - .srp-main-title { - margin: 32px 0 12px; - font-style: normal; - font-weight: normal; - font-size: 24px; - line-height: 28px; - color: $color-gray2; - - @include mq(md, max) { - margin-top: 0; - } - } - - .srp-description { - color: $color-gray2; - font-size: 12px; - line-height: 18px; - margin: 0 0 12px; - } - - button.shp-open-options { - background-color: $color-gray5; - border: none; - border-radius: 5px; - color: $color-gray2; - font-size: 16px; - letter-spacing: 0.05em; - line-height: 19px; - font-weight: 500; - outline: none; - padding: 12px 40px; - transition: all 0.2s linear; - - &:hover { - background-color: lighten($color-gray5, 5); - } - - &:active { - background-color: darken($color-gray5, 5); - } + margin-top: 0; } } - .srp-data { - width: 280px; + .srp-description { + color: $color-gray2; + font-size: 12px; + line-height: 18px; + margin: 0 0 12px; + } - @include mq(cstm, max) { - width: calc(100vw - 32px); + button.shp-open-options { + background-color: $color-gray5; + border: none; + border-radius: 5px; + color: $color-gray2; + font-size: 16px; + letter-spacing: 0.05em; + line-height: 19px; + font-weight: 500; + outline: none; + padding: 12px 40px; + transition: all 0.2s linear; + + &:hover { + background-color: lighten($color-gray5, 5); } - @include mq(md, max) { - margin-bottom: 40px; + &:active { + background-color: darken($color-gray5, 5); + } + } + } + + .srp-data { + width: 280px; + + @include mq(cstm, max) { + width: calc(100vw - 32px); + } + + @include mq(md, max) { + margin-bottom: 40px; + } + + .srp-pickup-my-location__button { + background-color: $color-blue-300; + border: none; + border-radius: 5px; + color: $color-white; + outline: none; + width: 100%; + + font-style: normal; + font-weight: 500; + font-size: 14px; + line-height: 16px; + letter-spacing: 0.05em; + + &:hover { + background-color: lighten($color-black, 5); } - .srp-pickup-my-location__button { - background-color: $color-black; + &:active { + background-color: darken($color-black, 5); + } + } + } + + .srp-toggle { + margin: 0 0 34px; + + &__wrapper { + background-color: $color-white; + border-radius: 100px; + width: 100%; + font-family: $font-family; + font-style: normal; + font-weight: normal; + font-size: 14px; + line-height: 16px; + text-transform: uppercase; + } + + &__current { + border: 1px solid $color-black-100; + border-radius: 100px; + } + + .blue { + color: $color-black; + } + + label { + width: 50%; + + &:active { + background-color: #f0f0f0; + } + } + } + + .srp-postal-code { + .ship-country { + display: none; + } + .ship-postalCode { + label { + font-family: $font-family; + font-style: normal; + font-weight: normal; + font-size: 12px; + line-height: 14px; + color: $color-black; + margin-bottom: 12px; + } + + input { + border: 1px solid #c4c4c4; + border-radius: 5px; + box-shadow: none; + color: $color-gray3; + font-size: 12px; + height: 36px; + padding: 12px 8px; + width: 172px; + } + + & ~ button { + background-color: $color-blue-300; border: none; border-radius: 5px; color: $color-white; + font-size: 12px; + height: 36px; + letter-spacing: 1px; outline: none; - width: 100%; + position: absolute; + right: -150px; + top: 36px; + transition: all 0.2s linear; + width: 96px; + text-transform: uppercase; + &:hover { + background-color: lighten($color-black, 5); + } + + &:active { + background-color: darken($color-black, 5); + } + } + + small a { + font-family: $font-family-secundary; font-style: normal; - font-weight: 500; - font-size: 14px; - line-height: 16px; - letter-spacing: 0.05em; + font-weight: normal; + font-size: 10px; + line-height: 12px; + color: $color-black-100; + margin-top: 7px; + &:hover { + text-decoration: underline; + cursor: pointer; + } + } + + span.help.error { + color: red; + font-size: 12px; + position: absolute; + left: 0; + width: 100%; + top: 17px; + } + } + } + + .srp-result { + strong, + .srp-items { + color: #303030; + font-weight: 400; + font-size: 14px; + } + + #deliver-at-text a { + color: #303030; + font-size: 16px; + font-weight: 500; + + &:hover { + text-decoration: underline; + } + } + + .srp-shipping-current-single { + border: 1px solid $color-gray4; + border-radius: 0; + color: #303030; + margin: 16px 0 0; + padding: 4px 12px; + + svg path { + fill: #d8c8ac; + } + } + + .srp-delivery-select { + border: 1px solid $color-gray4; + } + + .srp-delivery-select-container { + border: 1px solid $color-gray4; + border-radius: 0; + + .srp-shipping-current-many { + &__name { + color: #303030; + } + + &__sla { + color: #7d7d7d; + } + + &__price { + color: #7d7d7d; + font-weight: 500; + } + + &__arrow svg { + fill: $color-gray4; + } + } + } + } + } + + &-totalizers { + padding: 0; + width: 346px; + + .coupon-data { + #cart-link-coupon-add { + text-decoration: none; + + font-family: $font-family-secundary; + &:hover { + text-decoration: underline; + cursor: pointer; + } + } + span { + font-family: $font-family; + font-style: normal; + font-weight: normal; + font-size: 12px; + line-height: 14px; + color: #000; + text-decoration: none; + } + } + + @include mq(md, max) { + padding: 0 16px; + width: 100%; + } + + .coupon-column { + .coupon { + margin: 0; + } + + .link-coupon-add { + color: #303030; + font-size: 12px; + text-decoration: underline; + } + + .coupon-label label { + display: flex; + align-self: flex-start; + margin-bottom: 12px; + font-family: $font-family; + font-style: normal; + font-weight: normal; + font-size: 12px; + line-height: 14px; + color: $color-gray2; + cursor: none; + } + + .coupon-fields { + margin-bottom: 32px; + + @include mq(sm, max) { + span { + display: flex; + flex-direction: row; + justify-content: space-between; + i { + position: absolute; + right: 91px; + opacity: 1; + } + } + } + + input { + border: 2px solid $color-gray3; + border-radius: 5px; + box-shadow: none; + color: $color-gray4; + font-size: 12px; + height: 34px; + padding: 0 12px; + width: 54%; + + @include mq(sm, max) { + max-width: 100%; + width: 100%; + } + } + + button { + background: $color-blue-300; + border: none; + border-radius: 5px; + color: $color-black-100; + font-size: 12px; + height: 36px; + letter-spacing: 1px; + margin-left: 6px; + outline: none; + transition: all 0.2s linear; + width: 35%; + text-transform: uppercase; + + @include mq(md, max) { + width: 138px; + } &:hover { background-color: lighten($color-black, 5); @@ -427,386 +723,118 @@ } } } + } - .srp-toggle { - margin: 0 0 34px; + .accordion-group { + tr { + border-color: #e5e5e5; - &__wrapper { - background-color: $color-white; - border-radius: 100px; - width: 100%; - font-family: $font-family; - font-style: normal; - font-weight: normal; - font-size: 14px; - line-height: 16px; - text-transform: uppercase; - } - - &__current { - border: 1px solid $color-blue; - border-radius: 100px; - } - - .blue { - color: $color-blue; - } - - label { - width: 50%; - - &:active { - background-color: #f0f0f0; + td { + &.empty { + display: none; } - } - } - .srp-postal-code { - .ship-postalCode { - label { - font-family: $font-family; + &.info, + &.monetary { + font-family: $font-family-secundary; font-style: normal; font-weight: normal; - font-size: 12px; - line-height: 14px; + font-size: 14px; + line-height: 16px; color: $color-black; - margin-bottom: 12px; + padding: 12px 0; } - input { - border: 1px solid $color-gray3; - border-radius: 5px; - box-shadow: none; - color: $color-gray3; - font-size: 12px; - height: 36px; - padding: 12px 8px; - width: 172px; + &.info { + text-align: left; } - & ~ button { - background-color: $color-black; - border: none; - border-radius: 5px; - color: $color-white; - font-size: 12px; - height: 36px; - letter-spacing: 1px; - outline: none; - position: absolute; - right: -150px; - top: 36px; - transition: all 0.2s linear; - width: 96px; - text-transform: uppercase; - - &:hover { - background-color: lighten($color-black, 5); - } - - &:active { - background-color: darken($color-black, 5); - } - } - - small a { - font-family: $font-family; - font-style: normal; - font-weight: normal; - font-size: 10px; - line-height: 12px; - color: $color-blue; - margin-top: 7px; - } - - span.help.error { - color: red; - font-size: 12px; - position: absolute; - left: 0; - width: 100%; - top: 17px; + &.monetary { + text-align: right; } } } - .srp-result { - strong, - .srp-items { - color: #303030; - font-weight: 400; - font-size: 14px; - } - - #deliver-at-text a { - color: #303030; - font-size: 16px; - font-weight: 500; - - &:hover { - text-decoration: underline; - } - } - - .srp-shipping-current-single { - border: 1px solid $color-gray4; - border-radius: 0; - color: #303030; - margin: 16px 0 0; - padding: 4px 12px; - - svg path { - fill: #d8c8ac; - } - } - - .srp-delivery-select { - border: 1px solid $color-gray4; - } - - .srp-delivery-select-container { - border: 1px solid $color-gray4; - border-radius: 0; - - .srp-shipping-current-many { - &__name { - color: #303030; - } - - &__sla { - color: #7d7d7d; - } - - &__price { - color: #7d7d7d; - font-weight: 500; - } - - &__arrow svg { - fill: $color-gray4; - } - } - } - } - } - - &-totalizers { - padding: 0; - width: 346px; - - .coupon-data { - #cart-link-coupon-add { - text-decoration: none; - &:hover { - text-decoration: underline; - cursor: pointer; - } - } - span { + tfoot { + td.info, + td.monetary { font-family: $font-family; font-style: normal; font-weight: normal; - font-size: 12px; - line-height: 14px; - color: $color-blue; - text-decoration: none; - } - } - - @include mq(md, max) { - padding: 0 16px; - width: 100%; - } - - .coupon-column { - .coupon { - margin: 0; - } - - .link-coupon-add { - color: #303030; - font-size: 12px; - text-decoration: underline; - } - - .coupon-label label { - margin-bottom: 12px; - font-family: $font-family; - font-style: normal; - font-weight: normal; - font-size: 12px; - line-height: 14px; - color: $color-gray2; - cursor: none; - } - - .coupon-fields { - margin-bottom: 32px; - - @include mq(sm, max) { - span { - display: flex; - flex-direction: row; - justify-content: space-between; - i { - position: absolute; - right: 91px; - opacity: 1; - } - } - } - - input { - border: 2px solid $color-gray3; - border-radius: 5px; - box-shadow: none; - color: $color-gray4; - font-size: 12px; - height: 34px; - padding: 0 12px; - max-width: 160px; - - @include mq(sm, max) { - max-width: 100%; - width: 100%; - } - } - - button { - background: $color-black; - border: none; - border-radius: 5px; - color: $color-white; - font-size: 12px; - height: 36px; - letter-spacing: 1px; - margin-left: 6px; - outline: none; - transition: all 0.2s linear; - width: 94px; - text-transform: uppercase; - - @include mq(md, max) { - width: 138px; - } - - &:hover { - background-color: lighten($color-black, 5); - } - - &:active { - background-color: darken($color-black, 5); - } - } - } - } - - .accordion-group { - tr { - border-color: #e5e5e5; - - td { - &.empty { - display: none; - } - - &.info, - &.monetary { - font-style: normal; - font-weight: normal; - font-size: 14px; - line-height: 16px; - color: $color-black; - padding: 12px 0; - } - - &.info { - text-align: left; - } - - &.monetary { - text-align: right; - } - } - } - - tfoot { - td.info, - td.monetary { - font-style: normal; - font-weight: normal; - font-size: 18px; - line-height: 21px; - color: $color-black; - } - } - } - } - } - - .cart-links-bottom { - display: flex; - flex-direction: column; - width: 343px; - - @include mq(md, max) { - padding: 0 16px; - width: calc(100% - 32px); - float: none; - margin-bottom: 50px; - } - - @include mq(md, min) { - margin: 0; - padding-bottom: 50px; - } - - .link-choose-more-products-wrapper { - display: block; - text-align: center; - margin-bottom: 16px; - - @include mq(md, max) { - margin-bottom: 0px; - } - - a { - font-family: $font-family; - font-style: normal; - font-weight: normal; - font-size: 12px; - line-height: 14px; - color: $color-blue; - } - } - - .btn-place-order-wrapper { - a { - background: $color-green; - border: none; - border-radius: 5px; - display: block; - font-size: 0; - transition: ease-in 0.22s all; - padding: 12px 19px; - - &:hover { - background-color: darken($color-green, 5); - } - - &:after { - content: "finalizar compra"; - font-family: $font-family; - font-weight: 500; - font-size: 13px; - letter-spacing: 0.05em; - color: $color-white; - text-transform: uppercase; - vertical-align: middle; - line-height: 19px; - text-shadow: none; + font-size: 18px; + line-height: 21px; + font-weight: 700; + color: $color-black; } } } } } + +.cart-links-bottom { + display: flex; + flex-direction: column; + width: 343px; + + @include mq(md, max) { + padding: 0 16px; + width: calc(100% - 32px); + float: none; + margin-bottom: 50px; + } + + @include mq(md, min) { + margin: 0; + padding-bottom: 50px; + } + + .link-choose-more-products-wrapper { + display: block; + text-align: center; + margin-bottom: 16px; + + @include mq(md, max) { + margin-bottom: 0px; + } + + a { + font-family: $font-family-secundary; + font-style: normal; + font-weight: normal; + font-size: 12px; + line-height: 14px; + color: $color-black-100; + } + } + + .btn-place-order-wrapper { + a { + background: $color-blue-300; + border: none; + border-radius: 5px; + display: block; + font-size: 0; + transition: ease-in 0.22s all; + padding: 12px 19px; + + &:hover { + background-color: darken($color-green, 5); + cursor: pointer; + } + + &:after { + content: "finalizar compra"; + font-family: $font-family; + font-weight: 700; + font-size: 14px; + font-style: normal; + letter-spacing: 0.05em; + color: $color-black-100; + text-transform: uppercase; + vertical-align: middle; + line-height: 19px; + text-shadow: none; + } + } + } +} diff --git a/checkout/src/arquivos/sass/checkout/_checkout.scss b/checkout/src/arquivos/sass/checkout/_checkout.scss index 5fb011f..0f7c0e6 100644 --- a/checkout/src/arquivos/sass/checkout/_checkout.scss +++ b/checkout/src/arquivos/sass/checkout/_checkout.scss @@ -9,7 +9,7 @@ html { } footer .footerCheckout__wrapper { - width: 94.9734%; + width: 100%; margin: auto auto 0 auto; } footer .footerCheckout__prateleira, @@ -68,13 +68,14 @@ body { #cart-title, #orderform-title { - color: $color-gray2; + color: $color-black-100; font-family: $font-family; - font-weight: 500; - font-size: 36px; - line-height: 42px; + font-weight: 700; + font-size: 24px; + line-height: 33px; margin: 40px 0 30px; - letter-spacing: 0.1em; + letter-spacing: 0.05em; + text-transform: uppercase; @include mq(md, max) { diff --git a/checkout/src/arquivos/sass/lib/_slick.scss b/checkout/src/arquivos/sass/lib/_slick.scss index 74460fb..0a26e48 100644 --- a/checkout/src/arquivos/sass/lib/_slick.scss +++ b/checkout/src/arquivos/sass/lib/_slick.scss @@ -43,9 +43,10 @@ position: relative; left: 0; top: 0; - display: block; + display: flex; margin-left: auto; margin-right: auto; + gap: 16px; &:before, &:after { @@ -104,11 +105,16 @@ background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg") no-repeat center center; z-index: 4; - left: 10px; + left: 23px; + line-height: 27px; + border: none; } .slick-next { 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 { display: none; diff --git a/checkout/src/arquivos/sass/partials/_body.scss b/checkout/src/arquivos/sass/partials/_body.scss deleted file mode 100644 index 70e1b3f..0000000 --- a/checkout/src/arquivos/sass/partials/_body.scss +++ /dev/null @@ -1,11 +0,0 @@ -/*#checkoutMainContainer { - width: 100%; - transform: translateY(-50%); - height: 1px; - border-bottom: 1px solid #000000; -}*/ -.container-cart { - #cart-title { - display: none !important; - } -} diff --git a/checkout/src/arquivos/sass/partials/_footer.scss b/checkout/src/arquivos/sass/partials/_footer.scss index 2e4d3be..42d5a69 100644 --- a/checkout/src/arquivos/sass/partials/_footer.scss +++ b/checkout/src/arquivos/sass/partials/_footer.scss @@ -1,31 +1,141 @@ /* _footer.scss */ + .footerCheckout { - width: 100%; + margin: 0 !important; + width: 100% !important; display: flex; flex-direction: column; - border-top: none; + margin-top: 100%; color: $color-gray2; + margin-top: auto; &__wrapper { align-items: center; display: flex; 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; - justify-content: 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 { - color: $color-gray2; + color: $color-black; font-family: $font-family; font-style: normal; font-weight: normal; font-size: 10px; line-height: 12px; text-transform: capitalize; - max-width: 40%; + width: 269px; + margin-right: 45px; + &:span { + width: 269px; + } @include mq(md, max) { margin-bottom: 24px; @@ -39,11 +149,16 @@ display: flex; justify-self: center; list-style: none; + margin-right: 166px; flex-direction: row; - margin: 0; + //margin-right: 189px; + + ul { + margin: 0 0 0 0 !important; + } @include mq(md, max) { align-self: center; - margin-bottom: 12px; + //margin-bottom: 12px; } &__divider { @@ -66,17 +181,18 @@ } &__developedBy { - width: 18.6%; + width: 26.6%; align-items: center; display: flex; list-style-type: none; margin: 0; li:last-child { - margin-left: 16px; + margin-left: 5px; } a { + width: 120px; align-items: center; color: $color-gray2; display: flex; @@ -91,10 +207,67 @@ margin-right: 8px; } .iconDevV { - width: 19.65%; + width: 30.65%; } .iconDeveLM3 { - width: 15.65%; + 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; + } } } } diff --git a/checkout/src/arquivos/sass/partials/_header.scss b/checkout/src/arquivos/sass/partials/_header.scss index baa4a83..647d5ed 100644 --- a/checkout/src/arquivos/sass/partials/_header.scss +++ b/checkout/src/arquivos/sass/partials/_header.scss @@ -1,15 +1,19 @@ /* _header.scss */ .headerCheckout { + margin: 0 !important; + width: 100% !important; .container { + margin: 0 !important; + width: 100% !important; + &::after { - margin-top: 30px; + margin: 30px 0 0 0; width: 100%; transform: translateY(-50%); height: 1px; border-bottom: 1px solid #000000; } - width: auto !important; #progressBar { width: 446px; ul { @@ -68,22 +72,28 @@ } li .progress-bar-line-1 { position: absolute; - left: 57%; + left: 58%; transform: translateY(-50%); bottom: 4px; - width: 212%; + width: 176px; height: 1px; border-top: 1px solid #000; } li .progress-bar-line-2 { position: absolute; - right: 59%; + right: 60%; transform: translateY(-50%); - bottom: 5px; - width: 242%; + 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 { @@ -94,6 +104,7 @@ } &__logo { + padding-left: 131px; img { height: 52px; width: auto; @@ -101,6 +112,7 @@ } &__safeBuy { + padding-right: 131px; display: flex; span { align-items: center; @@ -111,8 +123,8 @@ font-style: normal; font-weight: normal; font-size: 12px; - line-height: 14px; - color: $color-gray; + line-height: 16px; + color: $color-black; } img { diff --git a/checkout/src/arquivos/sass/utils/_variaveis.scss b/checkout/src/arquivos/sass/utils/_variaveis.scss index f000abe..377a536 100644 --- a/checkout/src/arquivos/sass/utils/_variaveis.scss +++ b/checkout/src/arquivos/sass/utils/_variaveis.scss @@ -2,11 +2,11 @@ @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"); $font-family: "Open Sans", sans-serif; -$font-family-secundary:"Tenor Sans", sans-serif; +$font-family-secundary: "Tenor Sans", sans-serif; /* Colors */ $color-black: #292929; - +$color-black-100: #000; $color-white: #fff; $color-gray: #6c6c6c; @@ -14,25 +14,27 @@ $color-gray2: #7d7d7d; $color-gray3: #f0f0f0; $color-gray4: #8d8d8d; $color-gray5: #e5e5e5; - +$color-gray100: #808080; +$color-red: #ff0000; $color-blue: #4267b2; +$color-blue-300: #00c8ff; $color-green: #4caf50; /* Grid breakpoints */ $grid-breakpoints: ( - xs: 0, - cstm: 400, - sm: 576px, - md: 768px, - lg: 992px, - xl: 1200px + xs: 0, + cstm: 400, + sm: 576px, + md: 768px, + lg: 992px, + xl: 1200px, ) !default; $z-index: ( - level1: 5, - level2: 10, - level3: 15, - level4: 20, - level5: 25 + level1: 5, + level2: 10, + level3: 15, + level4: 20, + level5: 25, ) !default;