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

@ -16,5 +16,10 @@
</a> </a>
</header> </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> </body>
</html> </html>

View File

@ -3,6 +3,7 @@
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
} }
header { header {
align-items: center; align-items: center;
height: 101px; height: 101px;
@ -11,3 +12,22 @@ header {
background: black; background: black;
width: 100%; 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;
}
}