feat(main): Adiciona o Banner Principal Desktop

This commit is contained in:
Juan Guzzo Santana 2022-10-08 14:32:38 -03:00
parent d1dd769336
commit 5a59883f67
5 changed files with 17 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -8,14 +8,23 @@
<title>M3 Landing Page</title> <title>M3 Landing Page</title>
<link rel="stylesheet" href="./assets/styles/main.css" /> <link rel="stylesheet" href="./styles/main.css" />
</head> </head>
<body> <body>
<header class="page-header"> <header class="page-header">
<a href="./index.html"> <a href="./">
<img class="header-logo" src="./assets/images/m3-logo.svg" alt="Logo M3" /> <img class="header-logo" src="./assets/svg/m3-logo.svg" alt="Logo M3" />
</a> </a>
</header> </header>
<main>
<div class="main-banner">
<Figure class="main-banner-desktop">
<img src="assets/images/main-banner-desktop.png" alt="Banner Principal Desktop" />
</Figure>
</div>
</main>
</body> </body>
</html> </html>

View File

@ -4,6 +4,7 @@
box-sizing: border-box; box-sizing: border-box;
} }
/* Cabeçalho */
.page-header { .page-header {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -14,3 +15,7 @@
.header-logo { .header-logo {
display: block display: block
} }
.main-banner {
width: 100%;
}