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

42 lines
601 B
CSS
Raw Normal View History

2022-10-10 12:54:37 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: #000000;
font-family: 'Inter', sans-serif;
}
.page__header {
2022-10-10 12:54:37 +00:00
display: flex;
justify-content: center;
background: #000000;
padding: 1.87rem 0;
}
.header__logo {
2022-10-10 12:54:37 +00:00
display: block;
}
.main__banner {
display: block;
width: 100%;
}
@media screen and (max-width: 414px) {
.main__banner-desktop,
.middle__banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main__banner-mobile,
.middle__banner-mobile {
display: none;
}
2022-10-10 12:54:37 +00:00
}