Merge pull request 'feat(index): cria estilo da header para desktop e mobile' (#2) from feature/header into main

Reviewed-on: #2
This commit is contained in:
Nicolly Vieira Santos Costa 2022-10-11 11:37:12 +00:00
commit 57c2da22ff
2 changed files with 19 additions and 0 deletions

View File

@ -5,6 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio 1 - Landing Page</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!-- Header Page -->

View File

@ -0,0 +1,17 @@
* {
margin: 0;
box-sizing: border-box;
}
.header-page {
display: flex;
justify-content: center;
background: #000;
}
.header-page-logo {
display: block;
padding: 30px 0;
}