forked from M3-Academy/m3-academy-template-checkout
Desafio 4 M3 Academy #1
@ -61,10 +61,10 @@ export default class Footer {
|
||||
const sku = response.skus.map((item) => `<li>${item}</li>`);
|
||||
|
||||
structure += `
|
||||
<li>
|
||||
<figure><img src ="${response.img}"/></figure>
|
||||
<figcaption>${response.name}</figcaption>
|
||||
<div><ul>${sku}</ul></div>
|
||||
<li class="slick">
|
||||
<figure class="container-img"><img src ="${response.img}"/></figure>
|
||||
<figcaption class="name-picture">${response.name}</figcaption>
|
||||
<div><ul class= "number" >${sku.join("")}</ul></div>
|
||||
<button type="button"><a href="${response.link}">Ver Produto</a></button>
|
||||
</li>
|
||||
`;
|
||||
@ -94,21 +94,21 @@ export default class Footer {
|
||||
slidesToShow: 4,
|
||||
slidesToScroll: 1,
|
||||
arrows: true,
|
||||
infinite: false,
|
||||
infinite: true,
|
||||
});
|
||||
}
|
||||
|
||||
creditCardIconsHTML() {
|
||||
this.creditCardIcons.innerHTML = `
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" alt="Mastercard"></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png" alt=""></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png" alt="American Express"></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png" alt="Elo"></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png" alt="Hipercard"></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png" alt="PayPal"></li>
|
||||
<li><img src="https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png" alt="Boleto"></li>
|
||||
<li><img class="master" src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" alt="Mastercard"></li>
|
||||
<li><img class="visa" src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png" alt=""></li>
|
||||
<li><img class="amex" src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png" alt="American Express"></li>
|
||||
<li><img class="elo" src="https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png" alt="Elo"></li>
|
||||
<li><img class="hiper" src="https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png" alt="Hipercard"></li>
|
||||
<li><img class="paypal" src="https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png" alt="PayPal"></li>
|
||||
<li><img class="boleto" src="https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png" alt="Boleto"></li>
|
||||
<li><span class="footerCheckout__stamps__divider"></span></li>
|
||||
<li class="vtex-pci"><img src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png" alt="PCI VTEX"></li>
|
||||
<li class="vtex-pci"><img class="vtex" src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png" alt="PCI VTEX"></li>
|
||||
`;
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@ html {
|
||||
}
|
||||
|
||||
footer .footerCheckout__wrapper {
|
||||
width: 94.9734%;
|
||||
width: 100%;
|
||||
margin: auto auto 0 auto;
|
||||
}
|
||||
footer .footerCheckout__prateleira,
|
||||
|
@ -8,12 +8,27 @@
|
||||
&__wrapper {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
border-top: 1px solid #292929;
|
||||
}
|
||||
|
||||
&__adress {
|
||||
span {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 14px;
|
||||
text-transform: capitalize;
|
||||
color: #292929;
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0 16px;
|
||||
justify-content: space-between;
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
@ -47,8 +62,7 @@
|
||||
@include mq(xl, min) {
|
||||
font-family: $font-family;
|
||||
color: $color-black;
|
||||
width: 537px;
|
||||
font-size: 20px;
|
||||
// width: 537px;
|
||||
line-height: 27px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
@ -69,8 +83,7 @@
|
||||
align-items: center;
|
||||
justify-self: center;
|
||||
list-style: none;
|
||||
width: 404px;
|
||||
margin: 16px 189px 16px 137px;
|
||||
margin: 16px auto 16px auto;
|
||||
|
||||
@include mq(md, max) {
|
||||
align-self: center;
|
||||
@ -85,8 +98,22 @@
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.master,
|
||||
.visa,
|
||||
.amex,
|
||||
.elo,
|
||||
.hiper,
|
||||
.paypal,
|
||||
.boleto {
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.vtex {
|
||||
height: 33px;
|
||||
}
|
||||
|
||||
@include mq(xl, min) {
|
||||
width: 690px;
|
||||
// width: 690px;
|
||||
}
|
||||
|
||||
@include mq(md, max) {
|
||||
@ -99,10 +126,13 @@
|
||||
&__developedBy {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 217px;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.vtex-rigth1 {
|
||||
width: 15%;
|
||||
}
|
||||
@ -111,6 +141,22 @@
|
||||
width: 8%;
|
||||
}
|
||||
|
||||
.vtex-logo,
|
||||
.m3-logo {
|
||||
height: 16px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 9px;
|
||||
line-height: 12px;
|
||||
color: #292929;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.list {
|
||||
@include mq(xl, min) {
|
||||
font-family: "Open Sans";
|
||||
@ -140,4 +186,118 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footerCheckout__prateleira {
|
||||
margin-bottom: 56px;
|
||||
.footerCheckout__prateleira-title {
|
||||
font-family: "Tenor Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 24px;
|
||||
line-height: 38px;
|
||||
text-align: center;
|
||||
color: #000000;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
ul.footerCheckout__carrossel-itens {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
align-items: center;
|
||||
margin: 0 132px;
|
||||
|
||||
.container-img {
|
||||
margin: 0;
|
||||
margin-bottom: 20px;
|
||||
img {
|
||||
height: 242px;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
figcaption.name-picture {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
text-align: center;
|
||||
color: #000000;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
li.slick {
|
||||
width: 242px !important;
|
||||
|
||||
ul.number {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
margin-bottom: 20px;
|
||||
|
||||
text {
|
||||
display: none;
|
||||
}
|
||||
li {
|
||||
background: #00c8ff;
|
||||
border-radius: 8px;
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: #ffffff;
|
||||
padding: 5px;
|
||||
margin: 0 2.5px;
|
||||
}
|
||||
}
|
||||
button {
|
||||
height: 42px;
|
||||
max-width: 242px;
|
||||
width: 100%;
|
||||
background: #00c8ff;
|
||||
border-radius: 8px;
|
||||
border: 0;
|
||||
|
||||
a {
|
||||
font-family: "Open Sans";
|
||||
font-weight: 700;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.slick-next {
|
||||
content: "";
|
||||
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-M3Academy.svg");
|
||||
display: block;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-color: transparent;
|
||||
height: 29.47px;
|
||||
width: 13px;
|
||||
border: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.slick-prev {
|
||||
content: "";
|
||||
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-M3Academy.svg");
|
||||
display: block;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-color: transparent;
|
||||
height: 29.47px;
|
||||
width: 13px;
|
||||
border: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user