feature/section1 #2

Merged
luizfelipe9627 merged 2 commits from feature/section1 into main 2022-10-14 17:05:06 +00:00
2 changed files with 28 additions and 0 deletions

View File

@ -18,5 +18,12 @@
<img src="./src/assets/svg/logo.svg" alt="Logo M3"> <img src="./src/assets/svg/logo.svg" alt="Logo M3">
</a> </a>
</header> </header>
<main>
<section class="sessao1">
<img src="./src/assets/img/fundo-desktop.png" class="fundo-desktop" alt="Programação">
<img src="./src/assets/img/fundo-mobile.png" class="fundo-mobile" alt="Programação">
</section>
</main>
</body> </body>
</html> </html>

View File

@ -18,3 +18,24 @@ header {
align-items: center; align-items: center;
background-color: #000; background-color: #000;
} }
/* SECTION1 */
.sessao1 img {
width: 100%;
height: auto;
}
/* RESPONSIVIDADE -> CELULAR */
@media screen and (max-width: 425px) {
.fundo-desktop {
display: none;
}
}
@media screen and (min-width: 426px) {
.fundo-mobile {
display: none;
}
}