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:
commit
bdcdb6e794
@ -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>
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user