feat: adicionando banner desktop e mobile

This commit is contained in:
peocz95@gmail.com 2022-10-12 09:48:57 -03:00
parent 16a9f2a84c
commit aed6b3d24b
4 changed files with 27 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

View File

@ -13,4 +13,24 @@
.header-logo {
display: block;
}
.main-banner-desktop {
width: 100%;
}
.main-banner-mobile {
width: 100%;
}
@media screen and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile {
display: none;
}
}

View File

@ -16,5 +16,12 @@
<img class="header-logo" src="./assets/image/Logo-M3Academy 1.png" alt="Logo M3" />
</a>
</header>
<main>
<section>
<img class="main-banner-desktop" src="./assets/image/main-banner-desktop.png" alt="Banner Principal">
<img class="main-banner-mobile" src="./assets/image/main-banner-mobile.png" alt="Banner Principal">
</section>
</main>
</body>
</html>