astro/examples/blog/src/components/Nav.astro

53 lines
758 B
Text
Raw Normal View History

2021-05-17 22:45:41 +00:00
---
export let title;
---
<style lang="scss">
.header {
display: flex;
align-items: center;
padding: 2rem;
}
.title {
margin: 0;
2021-05-17 22:45:41 +00:00
font-size: 1.2em;
letter-spacing: -0.03em;
font-weight: 400;
margin-right: 1em;
}
.nav {
display: flex;
}
ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
li {
margin: 0;
}
a {
display: block;
2021-05-17 22:45:41 +00:00
font-size: 1.2em;
letter-spacing: -0.02em;
margin-left: 0.75em;
margin-right: 0.75em;
}
</style>
<nav class="header">
2021-05-17 22:45:41 +00:00
<h1 class="title">Dons Blog</h1>
<ul class="nav">
<li><a href="/">All Posts</a></li>
2021-05-17 22:45:41 +00:00
<li><a href="/author/don">Author: Don</a></li>
<li><a href="/author/sancho">Author: Sancho</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>