practice-time-landing-page-.../assets/styles/main.css

34 lines
451 B
CSS
Raw Normal View History

2022-10-08 07:35:41 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page-header {
display: flex;
justify-content: center;
padding: 28px 0;
background: #000000;
2022-10-08 07:35:41 +00:00
}
.header-logo {
display: block;
}
.main-banner {
width: 100%;
}
@media screen and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width:415px) {
.main-banner-mobile {
display: none;
}
2022-10-08 07:35:41 +00:00
}