adiciona banner mobile

This commit is contained in:
Henrique Martins Silva 2022-10-10 22:48:24 -03:00
parent aa86ba8378
commit 4d8c2e6933
3 changed files with 34 additions and 0 deletions

View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

View File

@ -0,0 +1,34 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page-header{
display: flex;
align-items: center;
justify-content: center;
background: black;
}
.image-header{
display: block;
padding: 28px 0;
}
.main-banner{
display: block;
width: 100%;
}
@media screen and (max-width: 425px){
.banner-desktop{
display: none;
}
}
@media screen and (min-width: 426px){
.banner-mobile{
display: none;
}
}