Adiciona o top infocard desktop e mobile

This commit is contained in:
Lorena Camila Coelho Máximo 2022-10-12 16:50:59 -04:00
parent e4aae67972
commit ce47a0be00
3 changed files with 128 additions and 37 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -4,19 +4,54 @@
box-sizing: border-box; box-sizing: border-box;
} }
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header { .page-header {
display: flex; display: flex;
justify-content:center ; justify-content: center;
padding: 28px 0; padding: 28px 0;
background: #000000; background: #000000;
} }
.header-logo{ .header-logo {
display:block; display: block;
} }
.main-banner{ .main-banner {
width: 100%; width: 100%;
}
.top-infocard {
display: flex;
align-items: center;
justify-content: center;
padding: 80px 0 96px;
}
.top-infocard-text {
max-width: 766px;
margin-right: 124px;
}
.top-inforcard-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;
} }
@media screen and (max-width: 414px) { @media screen and (max-width: 414px) {
@ -29,4 +64,35 @@ width: 100%;
.main-banner-mobile { .main-banner-mobile {
display: none; display: none;
} }
}
@media screen and (max-width: 992px) {
.top-infocard {
flex-direction: column;
padding: 84px 26px 158px;
} }
.top-infocard-text {
margin: 0 0 68px;
}
.top-inforcard-subtitle {
font-size: 20px;
}
.top-inforcard-title {
margin-bottom: 20px;
font-size: 28px;
}
.top-infocard-image {
width: 100%;
max-width: 240px;
}
@media screen and (min-width: 993px) and (max-width: 1280px) {
.top-infocard-text {
max-width: 520px;
margin-right: 70px;
}

View File

@ -1,16 +1,23 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="pt-br"> <html lang="pt-br">
<head>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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" />
<title>M3 Landing Page</title> <title>M3 Landing Page</title>
<link rel="stylesheet" href="./assets/styles/main.css" />
</head>
<body> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/styles/main.css" />
</head>
<body>
<header class="page-header"> <header class="page-header">
<a href="/"> <a href="/">
<img class="header-logo" src="./assets/images/logoM3.png" alt="Logo M3" /> <img class="header-logo" src="./assets/images/logoM3.png" alt="Logo M3" />
@ -19,9 +26,27 @@
<main> <main>
<section> <section>
<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" />
</section>
<section class="top-infocard">
<div class="top-infocard-text">
<h2 class="top-inforcard-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="Banner de Infocard do Topo" />
</section> </section>
</main> </main>
</body> </body>
</html> </html>