feat: more work done

This commit is contained in:
Alexander Daichendt 2022-07-26 08:30:47 +02:00
parent 8377892747
commit ab60b4baf7
21 changed files with 160 additions and 21 deletions

View file

@ -12,10 +12,16 @@
const NAV_ITEMS = [
{ href: '/blog', label: 'Blog' },
{ href: '/contact', label: 'Contact' }
{ href: '/contact', label: 'Contact' },
];
</script>
<svelte:head
><title>{$page.stuff.title} - AlexDaichendt</title>
<meta name="description" content={$page.stuff.description} />
<meta name="author" content="Alexander Daichendt" />
</svelte:head>
<div class="container upper">
<header>
<div class="header">
@ -88,19 +94,19 @@
.navItem a:after {
content: '';
position: absolute;
bottom: 0;
bottom: -2px;
right: 50%;
width: 0%;
border-bottom: 2px solid var(--outline-color);
border-bottom: 3px solid var(--outline-color);
transition: 0.3s;
}
.navItem a:before {
content: '';
position: absolute;
bottom: 0;
bottom: -2px;
left: 50%;
width: 0%;
border-bottom: 2px solid var(--outline-color);
border-bottom: 3px solid var(--outline-color);
transition: 0.3s;
}
.navItem a:hover:after {