forked from M3-Academy/practice-time-landing-page
38 lines
492 B
CSS
38 lines
492 B
CSS
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
/* header */
|
|
header{
|
|
background-color: black;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
header img{
|
|
padding: 28px 0 29px 0;
|
|
}
|
|
|
|
/* Banner principal */
|
|
|
|
.img-desktop{
|
|
width: 100%;
|
|
}
|
|
|
|
.img-mobile{
|
|
display: none;
|
|
}
|
|
|
|
/* Banner pincipal no mobile */
|
|
|
|
@media screen and (max-width:1024px) {
|
|
.img-desktop{
|
|
display: none;
|
|
}
|
|
|
|
.img-mobile{
|
|
display: unset;
|
|
width: 100%;
|
|
}
|
|
} |