feat(header): Adiciona cabeçallho desktop e mobile
This commit is contained in:
parent
007a16a5c3
commit
b25983e1da
9
assets/images/logo-m3academy.svg
Normal file
9
assets/images/logo-m3academy.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
@ -9,3 +9,33 @@
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* HEADER */
|
||||
|
||||
.header-container {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
background: #000000;
|
||||
padding: 29px 0;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo-link {
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 98%;
|
||||
}
|
||||
|
||||
/* MOBILE */
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.logo-link {
|
||||
width: 55%;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 99%;
|
||||
}
|
@ -17,6 +17,10 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="header-container">
|
||||
<a class="logo-link" href="/">
|
||||
<img class="logo" src="./assets/images/logo-m3academy.svg" alt="Logo M3 Academy"/>
|
||||
</a>
|
||||
</header>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user