feat: cria banner na versao mobile e desktop
This commit is contained in:
parent
17bea6e525
commit
fae1c9312e
BIN
assets/bannerPrincipalMobile.png
Normal file
BIN
assets/bannerPrincipalMobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 341 KiB |
@ -12,13 +12,16 @@
|
|||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<a href="./">
|
<a href="./">
|
||||||
<img src="assets/icons/Logo-M3.svg" alt="Logo-M3" class="logo-header">
|
<img src="assets/icons/Logo-M3.svg" alt="Logo-M3" class="logo-header" />
|
||||||
</a>
|
</a>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<div class="banner-principal">
|
<div>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="assets/bannerPrincipal.png" alt="Computador aberto com codigos de programação">
|
<img src="assets/bannerPrincipal.png" alt="Computador aberto com codigos de programação"
|
||||||
|
class="banner-principal banner-principal-desktop" />
|
||||||
|
<img src="assets/bannerPrincipalMobile.png" alt="Computador aberto com codigos de programação"
|
||||||
|
class="banner-principal banner-principal-mobile" />
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
@ -15,3 +15,20 @@ header {
|
|||||||
.logo-header {
|
.logo-header {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.banner-principal {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:414px) {
|
||||||
|
.banner-principal-desktop {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:415px) {
|
||||||
|
.banner-principal-mobile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user