Section 01

This commit is contained in:
Maria Carolina Oliveira da Silva 2022-10-11 22:07:45 -03:00
parent b19c51e29b
commit 5a0244a305
2 changed files with 113 additions and 55 deletions

View File

@ -1,48 +1,69 @@
*{ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
padding: 0; padding: 0;
margin: 0; margin: 0;
font-family: "Inter", sans-serif;
} }
.header-logo{ .header-logo {
background-color: black; background-color: black;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
.logo{ .logo {
width: 12%; width: 12%;
margin-top: 29px; margin-top: 29px;
margin-bottom: 29px; margin-bottom: 29px;
} }
.header-computer{ .header-computer {
width: 100%; width: 100%;
} }
.computers{ .computers {
width: 100%; width: 100%;
display: flex; display: flex;
justify-content: center; justify-content: center;
margin-top: 73px; margin-top: 73px;
} }
.info{ .info {
text-align: center; text-align: center;
margin: 73px; margin: 73px;
} }
.image-computer{ .image-computer {
width: 17%; width: 17%;
margin-bottom: 3rem;
} }
p{ p {
font-size: 16px; font-size: 16px;
line-height: 24px; line-height: 24px;
font: weight 400px; font: weight 400px;
text-align: center;
justify-content: center;
} }
.text{ .text {
margin-top: 28px; margin-top: 28px;
} }
.lorem{ .lorem {
font-size: 32px; font-size: 32px;
font-weight: 400px; font-weight: 400px;
line-height: 38px; line-height: 38px;
} }
.dolor{ .dolor {
font-size: 48px; font-size: 48px;
font-weight: 500px; font-weight: 500px;
line-height: 58px; line-height: 58px;
} }
.square{
box-shadow: 0px 4px 20px #0000003b;
text-align: center;
padding: 1em;
flex: 1 1 250px;
background-color: white;
padding: 3em 0;
align-items: center;
}
.container-3{
display: flex;
gap: 1em;
flex-wrap: wrap;
padding: 1em;
}

View File

@ -1,33 +1,70 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ptBR"> <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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css"> <link rel="stylesheet" href="./css/style.css" />
<title>challenge-landing-page</title> <title>challenge-landing-page</title>
</head> </head>
<body> <body>
<!-----------Header---------->
<header> <header>
<figure class="header-logo"> <figure class="header-logo">
<img class="logo" src="./assets/img/Logo-M3Academy 1.png" alt=""> <img class="logo" src="./assets/img/Logo-M3Academy 1.png" alt="Logo-M3Academy" />
</figure> </figure>
<figure> <figure>
<img class="header-computer" src="./assets/img/Rectangle 9.jpg" alt=""> <img class="header-computer" src="./assets/img/Rectangle 9.jpg" alt="Capa-notebook" />
</figure> </figure>
</header> </header>
<!------------Main---------->
<main> <main>
<!---------Section-1------------->
<section class="info"> <section class="info">
<div> <div>
<h2 class="lorem">LOREM IPSUM</h2> <h2 class="lorem">LOREM IPSUM</h2>
<h1 class="dolor">DOLOR SIT AMET</h1> <h1 class="dolor">DOLOR SIT AMET</h1>
<p class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla interdum.</p> <p class="text">
<p>Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit. Nulla suscipit magna dui. </p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras
euismod enim non dui fringilla interdum.
</p>
<p>
Curabitur ut tortor sed lacus egestas vulputate vel sit amet velit.
Nulla suscipit magna dui.
</p>
<figure class="computers"> <figure class="computers">
<img class="image-computer" src="./assets/SVG/computers.svg" alt=""> <img class="image-computer" src="./assets/SVG/computers.svg" alt="rede-Computadores" />
</figure> </figure>
</div> </div>
<!-------------Section-2----------->
<div class="container-3">
<div class="square">
<figure>
<img src="./assets/SVG/shopp.svg" alt="shopp" />
</figure>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla
interdum. </p>
</div>
<div class="square">
<figure>
<img src="./assets/SVG/shopping-bag (1) 1.svg" alt="shopping-bag" />
</figure>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla
interdum. </p>
</div>
<div class="square">
<figure>
<img src="./assets/SVG/money (1) 2.svg" alt="money" />
</figure>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras euismod enim non dui fringilla
interdum. </p>
</div>
</div>
</section> </section>
<!--------------Section-3------------------>
</main> </main>
</body> </body>
</html> </html>