forked from M3-Academy/challenge-landing-page
Commit de teste, bug no git
This commit is contained in:
parent
89ee7124ac
commit
6f7def6aa6
BIN
assets/images/Banner-Top-Desktop.png
Normal file
BIN
assets/images/Banner-Top-Desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/Banner-Top-Mobile.png
Normal file
BIN
assets/images/Banner-Top-Mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 333 KiB |
9
assets/images/Logo-M3Academy.svg
Normal file
9
assets/images/Logo-M3Academy.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
BIN
assets/images/Top-Infocard-Image.png
Normal file
BIN
assets/images/Top-Infocard-Image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
85
assets/styles/main.css
Normal file
85
assets/styles/main.css
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
*{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-header{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 28px 0;
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-logo{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-banner{
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 3.8% 0 9.4%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard-text{
|
||||||
|
max-width: 40.4%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard-subtitle{
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard-title{
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: 500;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 3.6%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard-description{
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
margin-bottom: 9.4%;
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-infocard-image{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 414px){
|
||||||
|
.main-banner-desktop{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 415px){
|
||||||
|
.main-banner-mobile{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px){
|
||||||
|
.top-infocard-subtitle{
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 24px;
|
||||||
|
margin: 0 138px;
|
||||||
|
}
|
||||||
|
}
|
70
index.html
Normal file
70
index.html
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<!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>Document</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="page-header">
|
||||||
|
<a href="/">
|
||||||
|
<figure>
|
||||||
|
<img class="header-logo" src="./assets/images/Logo-M3Academy.svg" alt="Logo M3 Academy">
|
||||||
|
</figure>
|
||||||
|
</a>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<figure>
|
||||||
|
<img class="main-banner main-banner-desktop" src="./assets/images/Banner-Top-Desktop.png" alt="Banner Principal do Desktop">
|
||||||
|
<img class="main-banner main-banner-mobile" src="./assets/images/Banner-Top-Mobile.png" alt="Banner Principal do Mobile">
|
||||||
|
</figure>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<figure>
|
||||||
|
<img class="top-infocard-image" src="./assets/images/Top-Infocard-Image.png" alt="Imagem do Infocard">
|
||||||
|
</figure>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="top-cards">
|
||||||
|
<div class="top-card">
|
||||||
|
<figure>
|
||||||
|
<img class="top-card-image" src="/assets/images/top-card-image-01.png" alt="Imagem do Primeiro Card do Topo">
|
||||||
|
</figure>
|
||||||
|
<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">
|
||||||
|
<figure>
|
||||||
|
<img class="top-card-image" src="/assets/images/top-card-image-02.png" alt="Imagem do Segundo Card do Topo">
|
||||||
|
</figure>
|
||||||
|
<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">
|
||||||
|
<figure>
|
||||||
|
<img class="top-card-image" src="/assets/images/top-card-image-03.png" alt="Imagem do Terceiro Card do Topo">
|
||||||
|
</figure>
|
||||||
|
<p class="top-card-description">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user