marcellomartins #1

Merged
MarcelloMartins merged 14 commits from marcellomartins into main 2022-10-13 21:47:45 +00:00
4 changed files with 26 additions and 1 deletions
Showing only changes of commit 7c7f198296 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

@ -15,6 +15,11 @@
<img class= "logo-m3" src="./assets/images/Logo-M3Academy 1.png" alt="Logo M3" />
</a>
</header>
<section>
<img class= "banner-1-desktop" src="./assets/images/banner-1-desktop.png" alt="laptop com codigos na tela" />
<img class= "banner-1-mobile" src="./assets/images/banner-1-mobile.png" alt="laptop com codigos na tela">
</section>
</body>
</html>

View File

@ -3,6 +3,7 @@
padding: 0;
box-sizing: border-box;
}
header {
align-items: center;
height: 101px;
@ -10,4 +11,23 @@ header {
justify-content: center;
background: black;
width: 100%;
}
}
.banner-1-desktop {
width: 100%;
}
.banner-1-mobile {
width: 100%;
display: none;
}
@media screen and (max-width: 1024px) {
.banner-1-desktop {
display: none;
}
.banner-1-mobile {
display: unset;
}
}