forked from M3-Academy/challenge-landing-page
development #5
@ -69,7 +69,7 @@ background: #000000;
|
||||
grid-template-columns: repeat(3,max-content);
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
padding: 142px 0 180px;
|
||||
padding: 142px 0 80px;
|
||||
}
|
||||
.CardBox{
|
||||
display: flex;
|
||||
@ -90,6 +90,32 @@ background: #000000;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.MidBanner{
|
||||
margin: 80px 0 0;
|
||||
background: rgba(224, 224, 224, 1);
|
||||
|
||||
}
|
||||
.wrapper{
|
||||
max-width: 100%;
|
||||
display: grid;
|
||||
gap: 40px;
|
||||
grid-template-columns: 30% 30% 30%;
|
||||
justify-content: center;
|
||||
padding: 32px 30px 32px;
|
||||
position: relative;
|
||||
top: 60px;
|
||||
}
|
||||
.midCard{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.midimg{
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 1023px) {
|
||||
.MainBannerDesktop{
|
||||
display: none;
|
||||
@ -124,7 +150,23 @@ background: #000000;
|
||||
gap:24px;
|
||||
justify-items: center;
|
||||
}
|
||||
|
||||
.wrapper{
|
||||
gap: 14px;
|
||||
grid-template-columns: none;
|
||||
grid-template-areas:
|
||||
"img2 img1"
|
||||
"img3 img3"
|
||||
;
|
||||
}
|
||||
.img1{
|
||||
grid-area:img1;
|
||||
}
|
||||
.img2{
|
||||
grid-area:img2;
|
||||
}
|
||||
.img3{
|
||||
grid-area:img3;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 1024px) {
|
||||
.MainBannerMobile{
|
||||
@ -166,4 +208,4 @@ background: #000000;
|
||||
font-size: 38px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Image/MidNotebook2.png
Normal file
BIN
assets/Image/MidNotebook2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 215 KiB |
BIN
assets/Image/MidNotebook3.png
Normal file
BIN
assets/Image/MidNotebook3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 KiB |
BIN
assets/Image/midNoteBook1.png
Normal file
BIN
assets/Image/midNoteBook1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 234 KiB |
32
index.html
32
index.html
@ -4,19 +4,19 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/challenge-landing-page-Gustavo_Rallenson/assets/Css/Styles.css">
|
||||
<link rel="stylesheet" href="/assets/Css/Styles.css">
|
||||
<title>Desafio Landing page</title>
|
||||
</head>
|
||||
<body>
|
||||
<header class="Page-Header">
|
||||
<a href="/challenge-landing-page-Gustavo_Rallenson/index.html">
|
||||
<img class="Header-Logo" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/Logo-M3Academy 1.svg" alt="Logo M3">
|
||||
<a href="index.html">
|
||||
<img class="Header-Logo" src="assets/Image/Logo-M3Academy 1.svg" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
<main>
|
||||
<figure>
|
||||
<img class="main-banner MainBannerDesktop" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/Top-banner-desktop.png" alt="Banner Principal desktop"/>
|
||||
<img class="main-banner MainBannerMobile"" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/Top-banner-mobile.png" alt="Banner Principal mobile"/>
|
||||
<img class="main-banner MainBannerDesktop" src="assets/Image/Top-banner-desktop.png" alt="Banner Principal desktop"/>
|
||||
<img class="main-banner MainBannerMobile"" src="assets/Image/Top-banner-mobile.png" alt="Banner Principal mobile"/>
|
||||
</figure>
|
||||
<section class="TopInfocard">
|
||||
<div class="TopInfocardText">
|
||||
@ -32,15 +32,15 @@
|
||||
</div>
|
||||
</section>
|
||||
<figure class="PcContainer">
|
||||
<img class="ImageTop" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/Computers.png" alt="Computadores">
|
||||
<img class="ImageTop" src="assets/Image/Computers.png" alt="Computadores">
|
||||
</figure>
|
||||
<div class="Cards">
|
||||
<figure class="CardBox">
|
||||
<img class="imageCard" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/shop 1.png" alt="icone de Loja">
|
||||
<img class="imageCard" src="assets/Image/shop 1.png" alt="icone de Loja">
|
||||
<figcaption class="CardDescription">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum. </figcaption>
|
||||
</figure>
|
||||
<figure class="CardBox">
|
||||
<img class="imageCard" src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/shopping-bag (1) 1.png" alt="icone de sacola">
|
||||
<img class="imageCard" src="/assets/Image/shopping-bag (1) 1.png" alt="icone de sacola">
|
||||
<figcaption class="CardDescription">
|
||||
Lorem ipsum dolor sit amet,
|
||||
consectetur adipiscing elit.
|
||||
@ -49,14 +49,26 @@
|
||||
</figcaption>
|
||||
</figure>
|
||||
<figure class="CardBox">
|
||||
<img class="imageCard"src="/challenge-landing-page-Gustavo_Rallenson/assets/Image/coin 1.png" alt="icone de mão com moeda">
|
||||
<img class="imageCard"src="assets/Image/coin 1.png" alt="icone de mão com moeda">
|
||||
<figcaption class="CardDescription">
|
||||
Lorem ipsum dolor sit amet,
|
||||
consectetur adipiscing elit.
|
||||
Cras euismod enim non dui fringilla interdum.
|
||||
</figcaption>
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
<div class="MidBanner">
|
||||
<div class="wrapper">
|
||||
<figure class="midCard img1">
|
||||
<img class="midimg " src="assets/Image/midNoteBook1.png" alt="Descktop frontal">
|
||||
</figure>
|
||||
<figure class="midCard img2">
|
||||
<img class="midimg " src="assets/Image/MidNotebook2.png" alt="Desktop Top-Down">
|
||||
</figure>
|
||||
<figure class="midCard img3">
|
||||
<img class="midimg" src="assets/Image/MidNotebook3.png" alt="Desktop Perfil">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer></footer>
|
||||
|
Loading…
Reference in New Issue
Block a user