challenge-landing-page/assets/styles/styles.css

45 lines
572 B
CSS
Raw Normal View History

2022-10-09 22:31:30 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100px;
background: #000000;
}
2022-10-09 23:25:31 +00:00
.banner-desktop {
display: flex;
justify-content: center;
width: 100%;
}
.banner-desktop figure img {
width: 100%;
}
.banner-mobile {
display: none;
}
@media (max-width: 414px) {
.banner-desktop {
display: none;
}
.banner-mobile {
display: flex;
justify-content: center;
width: 100%;
}
.banner-mobile figure img {
width: 100%;
}
}