feat: adiciona estilo header

This commit is contained in:
Naian Felix dos Santos 2022-10-10 16:52:21 -03:00
parent b5ebb5ee98
commit 18f839ee0a
5 changed files with 41 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,32 @@
@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;
}
.page-header {
display: flex;
justify-content: center;
background-color: #000000;
}
.header-logo {
display: block;
padding: 30px 0;
max-width: 226px;
width: 100%;
}
@media screen and (max-width: 768px) {
.header-logo {
padding: 24px 0 33px;
}
}