fredboniface.co.uk-svelte/src/lib/navigation.svelte
2023-08-17 17:01:18 +01:00

65 lines
931 B
Svelte

<script lang="ts">
import { page } from '$app/stores';
const links = [
{
name: 'Home',
link: '/'
},
{
name: 'Projects',
link: '/projects'
},
{
name: 'Posts',
link: '/posts'
}
];
function isActive(link: string): string {
if (link === $page.url.pathname) {
return 'active';
}
return '';
}
</script>
<nav>
{#each links as link}
<a href={link.link} class={isActive(link.link)}>{link.name}</a>
{/each}
</nav>
<style>
nav {
position: static;
top: 0;
left: 0;
width: 100%;
height: 30px;
background-color: transparent;
}
nav a {
float: left;
display: block;
color: rgb(46, 46, 46);
text-align: center;
padding: 10px 15px;
margin-right: 1px;
text-decoration: none;
font-size: 18px;
font-family: shadowsintolight;
font-weight: bolder;
}
nav a:hover {
background-color: slategray;
color: white;
}
nav a:active {
color: slategray;
}
</style>