Compare commits
10 Commits
main
...
RhayllonDa
Author | SHA1 | Date | |
---|---|---|---|
1c8b47e2f7 | |||
0beb041a3f | |||
13918f641b | |||
942e7b9839 | |||
4813b2b28c | |||
4978556823 | |||
c672ff1c48 | |||
958205dcde | |||
8d5d1f99ad | |||
c8161c54c6 |
313
assets/Styles/main.css
Normal file
@ -0,0 +1,313 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.header-page{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 28px 0px;
|
||||
background: #000000;
|
||||
border: 1px solid #000000;
|
||||
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
||||
|
||||
}
|
||||
|
||||
.header-logo{
|
||||
display: block;
|
||||
}
|
||||
|
||||
.main-banner,
|
||||
.middle-banner {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.top-infocard{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 80px 0 96px;
|
||||
}
|
||||
|
||||
.top-infocard-text{
|
||||
margin-right: 124px;
|
||||
max-width: 766px;
|
||||
}
|
||||
|
||||
.top-infocard-subtitle{
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
text-transform: uppercase;
|
||||
|
||||
}
|
||||
|
||||
.top-infocard-title{
|
||||
margin-bottom: 24px;
|
||||
font-weight: 500;
|
||||
font-size: 48px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.top-infocard-description{
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.top-cards{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, max-content);
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
padding: 74px 0;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
|
||||
.top-card{
|
||||
padding: 26px 26px 34px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
.top-card-image{
|
||||
display: block;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
|
||||
.top-card-description{
|
||||
max-width: 300px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.bottom-cards{
|
||||
margin-top: 140px;
|
||||
background: linear-gradient(180deg, #00C8FF 0%, #15ACD6 100%);
|
||||
}
|
||||
|
||||
.bottom-cards-wrapper{
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
position: relative;
|
||||
top: -60px;
|
||||
}
|
||||
|
||||
.bottom-card{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 36px 32px 66px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.bottom-card-image{
|
||||
display: block;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.bottom-card-description{
|
||||
max-width: 367px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-footer{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 38px 0;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.footer-icons{
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer-icon{
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
.footer-text{
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: uppercase;
|
||||
color: #BDBDBD;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
.main-banner-desktop,
|
||||
.middle-banner-desktop {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 415px) {
|
||||
.main-banner-mobile,
|
||||
.middle-banner-mobile{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.top-cards{
|
||||
grid-template-columns: 1fr;
|
||||
padding: 36px 26px;
|
||||
}
|
||||
|
||||
.bottom-cards{
|
||||
margin-top: 114px;
|
||||
padding: 0 26px;
|
||||
}
|
||||
|
||||
.bottom-cards-wrapper{
|
||||
grid-template-columns: 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.bottom-card-description{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.bottom-infocard{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 142px 0 180px;
|
||||
}
|
||||
|
||||
.bottom-infocard-image{
|
||||
margin-right: 40px;
|
||||
}
|
||||
|
||||
.bottom-infocard-text{
|
||||
max-width: 550px;
|
||||
}
|
||||
|
||||
.bottom-infocard-title{
|
||||
margin-bottom: 18px;
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
line-height: 1;
|
||||
|
||||
}
|
||||
|
||||
.bottom-infocard-description{
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.page-footer{
|
||||
padding-bottom: 26px;
|
||||
}
|
||||
|
||||
.footer-text{
|
||||
max-width: 280px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.top-infocard{
|
||||
flex-direction: column;
|
||||
padding: 84px 26px 158px;
|
||||
}
|
||||
|
||||
.top-infocard-text{
|
||||
margin: 0 0 68px;
|
||||
}
|
||||
|
||||
.top-infocard-subtitle{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.top-infocard-title{
|
||||
margin-bottom: 20px;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.top-infocard-image{
|
||||
width: 100%;
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
.bottom-infocard{
|
||||
flex-direction: column;
|
||||
padding: 80px 0 136px;
|
||||
}
|
||||
|
||||
.bottom-infocard-image{
|
||||
max-width: 596;
|
||||
width: 100%;
|
||||
margin: 0 0 50px;
|
||||
}
|
||||
|
||||
.bottom-infocard-text{
|
||||
padding: 0 26px;
|
||||
}
|
||||
|
||||
.bottom-infocard-title{
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (min-width: 993px) {
|
||||
.top-infocard-text{
|
||||
max-width: 520px;
|
||||
margin-right: 70px;
|
||||
}
|
||||
|
||||
.bottom-infocard-image{
|
||||
max-width: 480px;
|
||||
}
|
||||
|
||||
.bottom-infocard-text{
|
||||
max-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1280) {
|
||||
.top-infocard-text{
|
||||
max-width: 520px;
|
||||
margin-right: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) {
|
||||
.top-cards{
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
}
|
||||
|
||||
.bottom-card-description{
|
||||
max-width: 280;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1200px) {
|
||||
.top-cards{
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.bottom-card-description{
|
||||
max-width: 280px;
|
||||
}
|
||||
}
|
9
assets/images/Logo M3.svg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
assets/images/bottom-card-image-01.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/bottom-card-image-02.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/bottom-card-image-03.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/images/bottom-card-image-04.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
assets/images/bottom-infocard-image.png
Normal file
After Width: | Height: | Size: 444 KiB |
BIN
assets/images/facebook-icon.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
assets/images/instagram-icon.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
assets/images/main-banner-desktop.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/main-banner-mobile.png
Normal file
After Width: | Height: | Size: 332 KiB |
BIN
assets/images/middle-banner-desktop.png
Normal file
After Width: | Height: | Size: 946 KiB |
BIN
assets/images/middle-banner-mobile.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
assets/images/top-card-image-01.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/top-card-image-02.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
assets/images/top-card-image-03.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/images/top-infocard-image.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/images/youtube-icon.png
Normal file
After Width: | Height: | Size: 350 B |
162
index.html
Normal file
@ -0,0 +1,162 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="pt-br">
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<title>M3 Landing Page</title>
|
||||
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
|
||||
|
||||
<link rel="stylesheet" href="./assets/Styles/main.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header-page">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="./assets/images/logo M3.svg" alt="Logo M3" />
|
||||
</a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div>
|
||||
<figure>
|
||||
<img class="main-banner main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner computador" />
|
||||
<img class="main-banner main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner computador" />
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<section class="top-infocard">
|
||||
|
||||
<div class="top-infocard-text">
|
||||
<h2 class="top-infocard-subtitle">Lorem ipsum</h2>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<img class="top-infocard-image" src="./assets/images/top-infocard-image.png" alt=" Tres computador interligado" />
|
||||
|
||||
</section>
|
||||
|
||||
<section class="top-cards">
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image-01.png" alt="Imagem do primeiro card do topo" />
|
||||
|
||||
<p class="top-card-description">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image-02.png" alt="Imagem do segundo card do topo" />
|
||||
|
||||
<p class="top-card-description">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="top-card">
|
||||
<img class="top-card-image" src="./assets/images/top-card-image-03.png" alt="Imagem do terceiro card do topo" />
|
||||
|
||||
<p class="top-card-description">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
<div>
|
||||
<figure>
|
||||
<img class="middle-banner middle-banner-desktop" src="./assets/images/middle-banner-desktop.png" alt="Banner computador" />
|
||||
<img class="middle-banner middle-banner-mobile" src="./assets/images/middle-banner-mobile.png" alt="Banner computador" />
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<section class="bottom-cards">
|
||||
<div class="bottom-cards-wrapper">
|
||||
<div class="bottom-card">
|
||||
<img class="bottom-card-image" src="./assets/images/bottom-card-image-01.png" alt="Imagem do primeiro card de baixo" />
|
||||
|
||||
<p class="bottom-card-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>
|
||||
</div>
|
||||
|
||||
<div class="bottom-card">
|
||||
<img class="bottom-card-image" src="./assets/images/bottom-card-image-02.png" alt="Imagem do segundo card de baixo" />
|
||||
|
||||
<p class="bottom-card-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>
|
||||
</div>
|
||||
|
||||
<div class="bottom-card">
|
||||
<img class="bottom-card-image" src="./assets/images/bottom-card-image-03.png" alt="Imagem do terceiro card de baixo" />
|
||||
|
||||
<p class="bottom-card-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>
|
||||
</div>
|
||||
|
||||
<div class="bottom-card">
|
||||
<img class="bottom-card-image" src="./assets/images/bottom-card-image-04.png" alt="Imagem do quarto card de baixo" />
|
||||
|
||||
<p class="bottom-card-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>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<section class="bottom-infocard">
|
||||
<img class="bottom-infocard-image" src="./assets/images/bottom-infocard-image.png" alt="Banner do infocard de baixo" />
|
||||
|
||||
<div class="bottom-infocard-text">
|
||||
<h2 class="bottom-infocard-title">Lorem ipsum dolor sit amet</h2>
|
||||
|
||||
<p class="bottom-infocard-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.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="page-footer">
|
||||
<ul class="footer-icons">
|
||||
<li class="footer-icon">
|
||||
<a href="#" target="_blank">
|
||||
<img src="./assets/images/instagram-icon.png" alt="Icone do Instagram">
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="footer-icon">
|
||||
<a href="#" target="_blank">
|
||||
<img src="./assets/images/facebook-icon.png" alt="Icone do Facebook">
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="footer-icon">
|
||||
<a href="#" target="_blank">
|
||||
<img src="./assets/images/youtube-icon.png" alt="Icone do Youtube">
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<p class="footer-text">
|
||||
Copyright © 2020 - Loja Comércio Eletrônico CNPJ: 000.000.000/0001-00
|
||||
</p>
|
||||
</ul>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|