forked from M3-Academy/challenge-landing-page
Adiciona ajustes e correções no código
This commit is contained in:
parent
163d660476
commit
73c1a8a24c
@ -12,13 +12,12 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* HEADER E MAIN BANNER */
|
/* HEADER E MAIN BANNER */
|
||||||
|
|
||||||
.page__header {
|
.page__header {
|
||||||
width: 100%;
|
background: #000000;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background: #000000;
|
|
||||||
padding: 1.87rem 0;
|
padding: 1.87rem 0;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__logo {
|
.header__logo {
|
||||||
@ -36,26 +35,25 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
/* TOP TEXTS */
|
/* TOP TEXTS */
|
||||||
|
|
||||||
.top__text {
|
.top__text {
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 84px 30px 179px;
|
|
||||||
gap: 72px;
|
gap: 72px;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 84px 30px 179px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-text {
|
.top__infocard-text {
|
||||||
width: 40%;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
width: 40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-subtitle {
|
.top__infocard-subtitle {
|
||||||
text-transform: uppercase;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
font-weight: 400;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-title,
|
.top__infocard-title,
|
||||||
@ -63,36 +61,39 @@ body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top__infocard-image {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.top__infocard-title {
|
.top__infocard-title {
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: 500;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 500;
|
|
||||||
font-size: 48px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-description {
|
.top__infocard-description {
|
||||||
line-height: 24px;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* TOP CARDS */
|
/* TOP CARDS */
|
||||||
|
|
||||||
.top__cards {
|
.top__cards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(3, max-content);
|
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
grid-template-columns: repeat(3, max-content);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%
|
width: 100%
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__card {
|
.top__card {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 26px 26px 34px;
|
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 26px 26px 34px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__card-image {
|
.top__card-image {
|
||||||
@ -101,36 +102,35 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.top__card-description {
|
.top__card-description {
|
||||||
max-width: 300px;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
max-width: 300px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* BOTTOM CARDS */
|
/* BOTTOM CARDS */
|
||||||
|
|
||||||
.bottom__cards {
|
.bottom__cards {
|
||||||
background: #E0E0E0;
|
background: #E0E0E0;
|
||||||
padding: 0 72px;
|
|
||||||
margin: 80px 0 191px;
|
margin: 80px 0 191px;
|
||||||
|
padding: 0 72px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__cards-container {
|
.bottom__cards-container {
|
||||||
width: 100%;
|
|
||||||
position: relative;
|
|
||||||
display: grid;
|
display: grid;
|
||||||
|
gap: 40px;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
transform: translateY(4rem);
|
transform: translateY(4rem);
|
||||||
gap: 40px;
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__card img {
|
.bottom__card img {
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
height: auto;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__card-image {
|
.bottom__card-image {
|
||||||
@ -143,23 +143,21 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
/* BOTTOM INFOCARDS */
|
/* BOTTOM INFOCARDS */
|
||||||
|
|
||||||
.bottom__infocards {
|
.bottom__infocards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(4, 1fr);
|
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
padding: 0 76px 108px;
|
padding: 0 76px 108px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__infocard {
|
.bottom__infocard {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 33px 32px 65px;
|
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 33px 32px 65px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__infocard-image {
|
.bottom__infocard-image {
|
||||||
@ -168,26 +166,25 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bottom__infocard-description {
|
.bottom__infocard-description {
|
||||||
max-width: 300px;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
max-width: 300px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* BOTTOM BANNER CONTAINER */
|
/* BOTTOM BANNER CONTAINER */
|
||||||
|
|
||||||
.bottom__banner-container {
|
.bottom__banner-container {
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
flex-direction: column;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__banner-desktop {
|
.bottom__banner-desktop {
|
||||||
width: 100%;
|
|
||||||
padding: 0 280px 116px;
|
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
|
padding: 0 280px 116px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__banner-mobile {
|
.bottom__banner-mobile {
|
||||||
@ -195,8 +192,8 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bottom__title {
|
.bottom__title {
|
||||||
font-weight: 600;
|
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__text {
|
.bottom__text {
|
||||||
@ -204,37 +201,36 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bottom__description {
|
.bottom__description {
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: #000000;
|
background: #000000;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
padding: 38px 0;
|
padding: 38px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer__icons {
|
.footer__icons {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
gap: 20px;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
gap: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer__text {
|
.footer__text {
|
||||||
text-transform: uppercase;
|
|
||||||
line-height: 12px;
|
|
||||||
font-size: 10px;
|
|
||||||
color: #BDBDBD;
|
color: #BDBDBD;
|
||||||
|
font-size: 10px;
|
||||||
|
line-height: 12px;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ---------- MEDIAS QUERIES ---------- */
|
/* ----- MEDIAS QUERIES ----- */
|
||||||
|
|
||||||
@media screen and (max-width: 1024px) {
|
@media screen and (max-width: 1024px) {
|
||||||
|
|
||||||
@ -254,19 +250,19 @@ body {
|
|||||||
|
|
||||||
.bottom__banner-mobile {
|
.bottom__banner-mobile {
|
||||||
display: block;
|
display: block;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* TOP TEXTS */
|
/* TOP TEXTS */
|
||||||
.top__text {
|
.top__text {
|
||||||
flex-direction: column;
|
|
||||||
padding: 88px 32px 90px;
|
|
||||||
gap: 65px;
|
gap: 65px;
|
||||||
|
padding: 88px 32px 90px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-text {
|
.top__infocard-text {
|
||||||
width: 100%;
|
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-subtitle {
|
.top__infocard-subtitle {
|
||||||
@ -274,14 +270,10 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-title {
|
.top__infocard-title {
|
||||||
margin-bottom: 20px;
|
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-image {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 240px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top__infocard-description {
|
.top__infocard-description {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -289,19 +281,16 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
/* TOP CARDS */
|
/* TOP CARDS */
|
||||||
.top__infocards {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top__card-image {
|
.top__card-image {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 34%;
|
width: 34%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------- BOTTOM CARDS ---------- */
|
|
||||||
|
/* BOTTOM CARDS */
|
||||||
.bottom__cards {
|
.bottom__cards {
|
||||||
padding: 0 24px;
|
|
||||||
margin-bottom: 112px;
|
margin-bottom: 112px;
|
||||||
|
padding: 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__cards-container {
|
.bottom__cards-container {
|
||||||
@ -310,10 +299,6 @@ body {
|
|||||||
transform: translateY(2rem);
|
transform: translateY(2rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__card img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom__card-3 {
|
.bottom__card-3 {
|
||||||
grid-column: 1/3;
|
grid-column: 1/3;
|
||||||
}
|
}
|
||||||
@ -322,20 +307,17 @@ body {
|
|||||||
grid-row: 1;
|
grid-row: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------- BOTTOM INFOCARDS ---------- */
|
|
||||||
|
/* BOTTOM INFOCARDS */
|
||||||
.bottom__infocards {
|
.bottom__infocards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(3, max-content);
|
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
grid-template-columns: repeat(3, max-content);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 0 0;
|
padding: 0 0;
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom__infocard {
|
.bottom__infocard {
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
padding: 26px 26px 34px;
|
padding: 26px 26px 34px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,7 +326,8 @@ body {
|
|||||||
width: 34%;
|
width: 34%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------- BOTTOM BANNER CONTAINER ---------- */
|
|
||||||
|
/* BOTTOM BANNER CONTAINER */
|
||||||
.bottom__banner-container {
|
.bottom__banner-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column-reverse;
|
flex-direction: column-reverse;
|
||||||
@ -363,17 +346,15 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bottom__banner-mobile {
|
.bottom__banner-mobile {
|
||||||
width: 100%;
|
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---------- FOOTER ---------- */
|
|
||||||
|
/* FOOTER */
|
||||||
.page__footer {
|
.page__footer {
|
||||||
padding-bottom: 26px;
|
padding-bottom: 26px;
|
||||||
display: flex;
|
|
||||||
flex-direction: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer__text {
|
.footer__text {
|
||||||
@ -384,10 +365,13 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
@media screen and (min-width: 769px) and (max-width: 1024px) {
|
@media screen and (min-width: 769px) and (max-width: 1024px) {
|
||||||
|
|
||||||
|
/* TOP CARDS */
|
||||||
.top__cards {
|
.top__cards {
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* BOTTOM INFOCARDS */
|
||||||
.bottom__infocards {
|
.bottom__infocards {
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
}
|
}
|
||||||
@ -395,11 +379,14 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: 1200px) {
|
@media screen and (max-width: 1200px) {
|
||||||
|
|
||||||
|
/* TOP CARDS */
|
||||||
.top__cards {
|
.top__cards {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
padding: 0 32px;
|
padding: 0 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* BOTTOM INFOCARDS */
|
||||||
.bottom__infocards {
|
.bottom__infocards {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
padding: 0 24px 98px;
|
padding: 0 24px 98px;
|
||||||
@ -409,11 +396,10 @@ body {
|
|||||||
|
|
||||||
@media screen and (min-width: 2560px) {
|
@media screen and (min-width: 2560px) {
|
||||||
|
|
||||||
/* TOP TEXTS */
|
/* TOP TEXTS */
|
||||||
|
|
||||||
.top__text {
|
.top__text {
|
||||||
padding: 84px 30px 179px;
|
|
||||||
gap: 72px;
|
gap: 72px;
|
||||||
|
padding: 84px 30px 179px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-subtitle {
|
.top__infocard-subtitle {
|
||||||
@ -421,18 +407,17 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-title {
|
.top__infocard-title {
|
||||||
margin-bottom: 48px;
|
|
||||||
font-size: 96px;
|
font-size: 96px;
|
||||||
|
margin-bottom: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top__infocard-description {
|
.top__infocard-description {
|
||||||
line-height: 48px;
|
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
line-height: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* BOTTOM BANNER CONTAINER */
|
/* BOTTOM BANNER CONTAINER */
|
||||||
|
|
||||||
.bottom__title {
|
.bottom__title {
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
}
|
}
|
||||||
@ -444,20 +429,17 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
|
|
||||||
.footer__text {
|
.footer__text {
|
||||||
|
|
||||||
line-height: 24px;
|
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* TOP CARDS */
|
/* TOP CARDS */
|
||||||
|
|
||||||
.top__cards {
|
.top__cards {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(3, max-content);
|
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
grid-template-columns: repeat(3, max-content);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%
|
width: 100%
|
||||||
}
|
}
|
||||||
@ -474,13 +456,8 @@ body {
|
|||||||
|
|
||||||
|
|
||||||
/* BOTTOM INFOCARDS */
|
/* BOTTOM INFOCARDS */
|
||||||
|
|
||||||
.bottom__infocard-description {
|
.bottom__infocard-description {
|
||||||
max-width: 300px;
|
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
max-width: 300px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
219
index.html
219
index.html
@ -1,5 +1,6 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="pt-br">
|
<html lang="pt-br">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
@ -13,8 +14,8 @@
|
|||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<!-- HEADER -->
|
||||||
<header class="page__header">
|
<header class="page__header">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img class="header__logo" src="./assets/images/logo-m3.png" alt="Logo M3">
|
<img class="header__logo" src="./assets/images/logo-m3.png" alt="Logo M3">
|
||||||
@ -22,118 +23,152 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<!-- HEADER PRINCIPAL -->
|
<!-- BANNER PRINCIPAL -->
|
||||||
<figure>
|
<figure>
|
||||||
<img class="main__banner main__banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner principal Desktop">
|
<img class="main__banner main__banner-desktop" src="./assets/images/main-banner-desktop.png"
|
||||||
<img class="main__banner main__banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner principal Mobile">
|
alt="Banner principal Desktop">
|
||||||
|
<img class="main__banner main__banner-mobile" src="./assets/images/main-banner-mobile.png"
|
||||||
|
alt="Banner principal Mobile">
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
<!-- TEXTOS DO TOPO -->
|
<!-- TEXTOS E IMAGEM DO TOPO -->
|
||||||
<section class="top__text">
|
<section class="top__text">
|
||||||
<div class="top__infocard-text">
|
<div class="top__infocard-text">
|
||||||
<h2 class="top__infocard-subtitle">Lorem ipsum</h2>
|
<h2 class="top__infocard-subtitle">Lorem ipsum</h2>
|
||||||
<h1 class="top__infocard-title">dolor sit amet</h1>
|
<h1 class="top__infocard-title">dolor sit amet</h1>
|
||||||
<p class="top__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui. </p>
|
<p class="top__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras
|
||||||
|
euismod enim non dui fringilla interdum. Curabitur ut tortor sed lacus egestas vulputate vel sit
|
||||||
|
amet velit. Nulla suscipit magna dui. </p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- IMAGEM DO TOPO -->
|
|
||||||
<figure>
|
<figure>
|
||||||
<img class="top__infocard-image" src="./assets/images/top-image.png" alt="Imagem de 3 monitores">
|
<img class="top__infocard-image" src="./assets/images/top-image.png" alt="Imagem de 3 monitores">
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- 3 CARDS DO TOPO COM DESCRIÇÕES -->
|
<!-- 3 CARDS DO TOPO COM DESCRIÇÕES -->
|
||||||
<section class="top__cards">
|
<section class="top__cards">
|
||||||
<figure class="top__card">
|
<figure class="top__card">
|
||||||
<img class="top__card-image" src="./assets/images/shop-icon.png" alt="Imagem de um shop icon do primeiro card do topo">
|
<img class="top__card-image" src="./assets/images/shop-icon.png"
|
||||||
<figcaption class="top__card-description"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </figcaption>
|
alt="Icon de um shop do primeiro card do topo">
|
||||||
|
<figcaption class="top__card-description"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras
|
||||||
|
euismod enim non dui fringilla interdum. </figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
<figure class="top__card">
|
||||||
|
<img class="top__card-image" src="./assets/images/shopping-bag-icon.png"
|
||||||
|
alt="Icon de uma bolsa de shopping do segundo card do topo">
|
||||||
|
<figcaption class="top__card-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras
|
||||||
|
euismod enim non dui fringilla interdum. </figcaption>
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
<figure class="top__card">
|
||||||
|
<img class="top__card-image" src="./assets/images/coin-icon.png"
|
||||||
|
alt="Icon de uma mão com uma moeda em cima do terceiro card do topo">
|
||||||
|
<figcaption class="top__card-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras
|
||||||
|
euismod enim non dui fringilla interdum. </figcaption>
|
||||||
|
</figure>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- 3 IMAGENS DOS CARDS DE BAIXO -->
|
||||||
|
<section class="bottom__cards">
|
||||||
|
<div class="bottom__cards-container">
|
||||||
|
<figure class="bottom__card bottom__card-1">
|
||||||
|
<img class="bottom__card-image" src="./assets/images/bottom-image-1.png"
|
||||||
|
alt="Imagem do primeiro card de baixo">
|
||||||
</figure>
|
</figure>
|
||||||
<figure class="top__card">
|
|
||||||
<img class="top__card-image" src="./assets/images/shopping-bag-icon.png" alt="Imagem de um shopping bag do segundo card do topo">
|
<figure class="bottom__card bottom__card-2">
|
||||||
<figcaption class="top__card-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </figcaption>
|
<img class="bottom__card-image" src="./assets/images/bottom-image-2.png"
|
||||||
|
alt="Imagem do segundo card de baixo">
|
||||||
</figure>
|
</figure>
|
||||||
<figure class="top__card">
|
|
||||||
<img class="top__card-image" src="./assets/images/coin-icon.png" alt="Imagem de uma coin icon do terceiro card do topo">
|
<figure class="bottom__card bottom__card-3">
|
||||||
<figcaption class="top__card-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </figcaption>
|
<img class="bottom__card-image" src="./assets/images/bottom-image-3.png"
|
||||||
|
alt="Imagem do teceiro card de baixo">
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<!-- 3 IMAGENS DE BAIXO -->
|
<!-- 4 CARDS DE BAIXO COM DESCRIÇÕES -->
|
||||||
<section class="bottom__cards">
|
<section class="bottom__infocards">
|
||||||
<div class="bottom__cards-container">
|
<figure class="bottom__infocard">
|
||||||
<figure class="bottom__card bottom__card-1">
|
<img class="bottom__infocard-image" src="./assets/images/money-icon.png"
|
||||||
<img class="bottom__card-image" src="./assets/images/bottom-image-1.png" alt="Imagem do primeiro card de baixo">
|
alt="Icon de dinheiro do primeiro card de baixo">
|
||||||
</figure>
|
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing
|
||||||
|
elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur
|
||||||
|
adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
||||||
|
</figure>
|
||||||
|
|
||||||
<figure class="bottom__card bottom__card-2">
|
<figure class="bottom__infocard">
|
||||||
<img class="bottom__card-image" src="./assets/images/bottom-image-2.png" alt="Imagem do segundo card de baixo">
|
<img class="bottom__infocard-image" src="./assets/images/handcoin-icon.png"
|
||||||
</figure>
|
alt="Icone de uma mão com uma moeda do segundo card de baixo">
|
||||||
|
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing
|
||||||
|
elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur
|
||||||
|
adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
||||||
|
</figure>
|
||||||
|
|
||||||
<figure class="bottom__card bottom__card-3">
|
<figure class="bottom__infocard">
|
||||||
<img class="bottom__card-image" src="./assets/images/bottom-image-3.png" alt="Imagem do teceiro card de baixo">
|
<img class="bottom__infocard-image" src="./assets/images/laptop-icon.png"
|
||||||
</figure>
|
alt="Icone de um laptop do terceiro card de baixo">
|
||||||
</div>
|
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing
|
||||||
</section>
|
elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur
|
||||||
|
adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
||||||
|
</figure>
|
||||||
|
|
||||||
<!-- 4 CARDS DE BAIXO COM DESCRIÇÕES -->
|
<figure class="bottom__infocard">
|
||||||
<section class="bottom__infocards">
|
<img class="bottom__infocard-image" src="./assets/images/smartphone-icon.png"
|
||||||
<figure class="bottom__infocard">
|
alt="Icone de um celulara do quarto card de baixo">
|
||||||
<img class="bottom__infocard-image" src="./assets/images/money-icon.png" alt="Icon de dinheiro do primeiro card de baixo">
|
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing
|
||||||
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur
|
||||||
</figure>
|
adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
||||||
<figure class="bottom__infocard">
|
</figure>
|
||||||
<img class="bottom__infocard-image" src="./assets/images/handcoin-icon.png" alt="Icone de uma mão com uma moeda do segundo card de baixo">
|
</section>
|
||||||
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
|
||||||
</figure>
|
|
||||||
<figure class="bottom__infocard">
|
|
||||||
<img class="bottom__infocard-image" src="./assets/images/laptop-icon.png" alt="Icone de um laptop do terceiro card de baixo">
|
|
||||||
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
|
||||||
</figure>
|
|
||||||
<figure class="bottom__infocard">
|
|
||||||
<img class="bottom__infocard-image" src="./assets/images/smartphone-icon.png" alt="Icone de um celulara do quarto card de baixo">
|
|
||||||
<figcaption class="bottom__infocard-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </p>
|
|
||||||
</figure>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!-- BANNER DE BAIXO COM TEXTO -->
|
<!-- BANNER DE BAIXO COM TEXTO -->
|
||||||
<section class="bottom__banner-container">
|
<section class="bottom__banner-container">
|
||||||
<div class="bottom__text">
|
<div class="bottom__text">
|
||||||
<h2 class="bottom__title">Lorem ipsum dolor sit amet</h2>
|
<h2 class="bottom__title">Lorem ipsum dolor sit amet</h2>
|
||||||
<p class="bottom__description">
|
<p class="bottom__description">
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vulputate sapien non libero faucibus interdum. In eget tincidunt ipsum. Quisque a tellus at lectus blandit tempor. Ut tristique auctor mi eget hendrerit. Curabitur venenatis felis vitae sagittis venenatis. Donec finibus turpis vitae lectus interdum rutrum vitae sed augue.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vulputate sapien non libero faucibus
|
||||||
</p>
|
interdum. In eget tincidunt ipsum. Quisque a tellus at lectus blandit tempor. Ut tristique auctor mi
|
||||||
</div>
|
eget hendrerit. Curabitur venenatis felis vitae sagittis venenatis. Donec finibus turpis vitae
|
||||||
<figure>
|
lectus interdum rutrum vitae sed augue.
|
||||||
<img class="bottom__banner-desktop" src="./assets/images/bottom-banner-desktop.png" alt="Banner do infocard de baixo">
|
|
||||||
<img class="bottom__banner-mobile" src="./assets/images/bottom-banner-mobile.png" alt="">
|
|
||||||
</figure>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!-- FOOTER -->
|
|
||||||
<footer class="footer">
|
|
||||||
<ul class="footer__icons">
|
|
||||||
<li class="footer__icon">
|
|
||||||
<a href="#" target="_blank">
|
|
||||||
<img src="./assets/images/instagram-icon.svg" alt="Icone do Instagram">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="footer__icon">
|
|
||||||
<a href="#" target="_blank">
|
|
||||||
<img src="./assets/images/facebook-icon.svg" alt="Icone do Facebook">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="footer__icon">
|
|
||||||
<a href="#" target="_blank">
|
|
||||||
<img src="./assets/images/youtube-icon.svg" alt="Icone do YouTube">
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p class="footer__text">
|
|
||||||
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
|
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</div>
|
||||||
</main>
|
<figure>
|
||||||
|
<img class="bottom__banner-desktop" src="./assets/images/bottom-banner-desktop.png"
|
||||||
|
alt="Banner do infocard de baixo desktop">
|
||||||
|
<img class="bottom__banner-mobile" src="./assets/images/bottom-banner-mobile.png"
|
||||||
|
alt="Banner do infocard de baixo mobile">
|
||||||
|
</figure>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- FOOTER -->
|
||||||
|
<footer class="footer">
|
||||||
|
<ul class="footer__icons">
|
||||||
|
<li class="footer__icon">
|
||||||
|
<a href="#" target="_blank">
|
||||||
|
<img src="./assets/images/instagram-icon.svg" alt="Icone do Instagram">
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="footer__icon">
|
||||||
|
<a href="#" target="_blank">
|
||||||
|
<img src="./assets/images/facebook-icon.svg" alt="Icone do Facebook">
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="footer__icon">
|
||||||
|
<a href="#" target="_blank">
|
||||||
|
<img src="./assets/images/youtube-icon.svg" alt="Icone do YouTube">
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p class="footer__text">
|
||||||
|
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user