Adiciona os banners principais desktop e mobile

This commit is contained in:
Guilherme Carvalho da Rosa 2022-10-10 23:35:53 -03:00
parent 521a0b67d7
commit a24812c48b
4 changed files with 22 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

View File

@ -14,3 +14,19 @@
.header-logo {
display: block;
}
.main-banner {
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

@ -17,5 +17,11 @@
</a>
</header>
<main>
<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-mobile" src="./assets/images/main-banner-mobile.png" alt="Banner Principal Mobile">
</section>
</main>
</body>
</html>