feature/challenge #1

Merged
BernardoWaldhelm merged 11 commits from feature/challenge into main 2022-10-12 22:05:45 +00:00
4 changed files with 26 additions and 1 deletions
Showing only changes of commit 7271058f88 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@ -9,6 +9,18 @@
.header__logo {
width: 16%;
display: block;
}
.banner__img {
width: 100%;
display: block;
}
@media screen and (min-width: 415px) {
.banner__img__mobile {
display: none;
}
}
@media screen and (max-width: 414px) {
@ -16,4 +28,7 @@
.header__logo {
width: 54%;
}
.banner__img__desktop {
display: none;
}
}

View File

@ -13,5 +13,15 @@
<header class="header">
<img class="header__logo" src="./assets/images/logo-m3.svg" alt="Logo M3 Academy">
</header>
<main>
<section class="banner">
<img class="banner__img banner__img__desktop" src="/assets/images/banner-princpal-desktop.png" alt="Banner Principal do Site" />
<img class="banner__img banner__img__mobile" src="/assets/images/banner-principal-mobile.png" alt="Banner Principal do Site" />
</section>
</main>
</body>
</html>