develop #2

Merged
affonso_kopmann merged 3 commits from develop into main 2022-10-11 02:12:43 +00:00
2 changed files with 11 additions and 53 deletions
Showing only changes of commit 8ceb897032 - Show all commits

View File

@ -10,31 +10,9 @@ body {
} }
.page-header { .page-header {
display: flex;
justify-content: center;
background: #000000; background: #000000;
padding: 29px 0; padding: 28px 0;
} justify-content: center;
display: flex;
.header-logo {
display: block;
}
.main-banner-desktop {
display: block;
width: 100%;
}
@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;
}
} }

View File

@ -3,43 +3,23 @@
<head> <head>
<link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <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>Challenge Landing Page - M3 Academy | Affonso Kopmann</title> <title> Desafio M3 Academy - Affonso Kopmann </title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./_assets/css/main.css" /> <link rel="stylesheet" href="./_assets/css/main.css" />
</head> </head>
<body>
<body>
<!-- Header | Image and Background --> <!-- Header | Image and Background -->
<header class="page-header"> <header class="page-header">
<a href="/"> <img src="./_assets/images/logo_m3.svg" alt="Logo M3">
<img
class="header-logo"
src="./_assets/images/logo_m3.svg"
alt="Logo M3">
</a>
</header> </header>
<main>
<div class="main-banner-desktop">
<img src="./_assets/images/main-banner-desktop.jpg" alt="Main Banner Desktop">
</div>
<div class="main-banner-mobile">
<img src="./_assets/images/main-banner-mobile.jpg" alt="Main Banner Mobile">
</div>
</main>
<!-- Footer | Desktop and Mobile -->
<footer>
</footer>
</body> </body>
</html> </html>