feat(main): Adiciona banners principais desktop e mobile

This commit is contained in:
Sabrina Miranda 2022-10-12 22:33:18 -03:00
parent b25983e1da
commit 6ca582de8c
4 changed files with 33 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 KiB

View File

@ -29,6 +29,17 @@ a {
width: 98%;
}
/* MAIN BANNER */
.main-banner {
display: block;
width: 100%;
}
.main-banner-mobile {
display: none;
}
/* MOBILE */
@media (max-width: 1024px) {
@ -38,4 +49,13 @@ a {
.logo {
width: 99%;
}
}
.main-banner-desktop {
display: none;
}
.main-banner-mobile {
display: block;
}
}

View File

@ -22,5 +22,17 @@
<img class="logo" src="./assets/images/logo-m3academy.svg" alt="Logo M3 Academy"/>
</a>
</header>
<main>
<div>
<figure>
<img class="main-banner main-banner-desktop" src="./assets/images/main-banner-desktop.png" alt="Banner Principal Desktop"/>
</figure>
<figure>
<img class="main-banner main-banner-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner Principal Mobile"/>
</figure>
</div>
</main>
</body>
</html>