Merge pull request 'feature/section1' (#2) from feature/section1 into main

Reviewed-on: luizfelipe9627/practice-time-landing-page-luiz-felipe#2
This commit is contained in:
Luiz Felipe Silva 2022-10-14 17:05:05 +00:00
commit bdcdb6e794
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">
</a>
</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>
</html>

View File

@ -18,3 +18,24 @@ header {
align-items: center;
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;
}
}