firq-dev-website/src/components/navbar.astro

48 lines
955 B
Text
Raw Normal View History

2023-03-04 13:48:57 +01:00
---
---
<header>
2023-03-04 19:11:52 +01:00
<a href="/" rel="noopener noreferrer" aria-label="Home">
2023-03-04 13:48:57 +01:00
<img src="link_192.png" alt="">
</a>
2023-03-04 19:11:52 +01:00
<ul>
<slot />
2023-03-04 13:48:57 +01:00
</ul>
</header>
<style>
header {
background-color: #1e1e1e;
display: flex;
height: 64px;
width: 100%;
align-items: center;
line-height: 1.5em;
}
header > a {
padding-left: 16px;
display: block;
height: 48px;
width: 48px;
}
a > img {
height: 100%;
width: 100%;
object-fit: contain;
}
ul {
align-items: center;
justify-content: space-around;
display: flex;
flex-wrap: wrap;
flex-direction: row;
height: 64px;
width: 100%;
list-style-type: none;
row-gap: 0.5em;
column-gap: 0.5ch;
margin-block-start: 0px;
margin-block-end: 0px;
line-height: 1.5em;
}
</style>