thomaswilson-sveltekit/src/components/Navbar.svelte

53 lines
764 B
Svelte
Raw Normal View History

2022-04-16 10:43:45 +00:00
<nav>
<div class="left">
<a href="/" class="home">Thomas Wilson</a>
</div>
<div class="right">
<a href="/blog" class="blog">Blog</a>
</div>
</nav>
<style>
nav {
display: flex;
flex-flow: row;
max-width: 100vw;
overflow: hidden;
}
.left {
flex: 1;
flex-grow: 0;
text-align: left;
padding: var(--spacing-base);
}
.home {
color: var(--brand-orange);
text-decoration: none;
font-weight: 300;
display: flex;
width: fit-content;
white-space: nowrap;
transition: 0.3s;
}
.home:hover {
transform: rotate(11deg);
}
.right {
display: flex;
2022-04-16 10:43:45 +00:00
flex: 1;
text-align: right;
align-items: center;
justify-content: flex-end;
2022-04-16 10:43:45 +00:00
padding: var(--spacing-base);
}
.blog:visited {
color: var(--brand-blue);
}
</style>