Feature: Adicionar o Header Desktop e Mobile

This commit is contained in:
Affonso Kopmann 2022-10-08 17:23:13 -03:00
parent 96b1f61c9a
commit 81922e9349
3 changed files with 60 additions and 0 deletions

21
_assets/css/main.css Normal file
View File

@ -0,0 +1,21 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header {
display: flex;
justify-content: center;
background: #000000;
padding: 29px 0;
}
.header-logo {
display: block;
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Challenge Landing Page - M3 Academy | Affonso Kopmann</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./_assets/css/main.css" />
</head>
<body>
<!-- Header | Image and Background -->
<header class="page-header">
<a href="/">
<img
class="header-logo"
src="./_assets/images/logo_m3.svg"
alt="Logo M3">
</a>
</header>
</body>
</html>