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

37 lines
639 B
CSS
Raw Normal View History

2022-10-10 18:55:03 +00:00
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
/*Adiciona header desktop e mobile*/
.page-header {
display: flex;
justify-content: center;
padding: 29px;
background: #000000;
}
.header-logo {
display: block;
2022-10-10 19:36:15 +00:00
}
/*Adiciona banner principal*/
.main-banner {
display: block;
width: 100%;
}
/*Media Querie*/
@media screen and (max-width: 414px) {
.main-banner {
content: url('../imagens/main-banner-mobile.png');
}
2022-10-10 18:55:03 +00:00
}