53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
---
|
|
import '@styles/main.css';
|
|
---
|
|
|
|
<style>
|
|
header {
|
|
background-color: var(--primary-color-faded);
|
|
}
|
|
|
|
nav {
|
|
max-width: 30rem;
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
& a {
|
|
flex: 1;
|
|
max-width: 8rem;
|
|
padding: 0.25rem 1rem;
|
|
|
|
font-size: 1.75rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
background: var(--nav-hover);
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="/" data-astro-prefetch>Home</a>
|
|
<a href="/posts" data-astro-prefetch>Posts</a>
|
|
<a href="/about" data-astro-prefetch>About</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
</body>
|
|
</html>
|