aotds-docks/src/lib/components/Header.svelte

54 lines
919 B
Svelte
Raw Normal View History

2020-07-28 16:13:04 +00:00
<header>
2020-07-30 22:22:19 +00:00
<h1>The Docks</h1>
2022-03-01 17:42:33 +00:00
<h2>
a <a href="https://shop.groundzerogames.co.uk/rules.html">Full Thrust</a> ship
builder
</h2>
2022-03-20 21:48:45 +00:00
<a on:click|preventDefault={() => showAbout = true}>about the app</a>
2022-03-01 17:42:33 +00:00
</header>
2020-07-28 16:13:04 +00:00
2022-03-20 21:48:45 +00:00
<Modal bind:open={showAbout}>
<About/>
</Modal>
<script>
import {
Modal, Card, Nav
} from 'svelte-chota';
import About from './About.svelte';
let showAbout = false;
</script>
2022-03-01 17:42:33 +00:00
<style>
header {
2020-07-28 19:49:08 +00:00
display: flex;
align-items: baseline;
2022-03-01 17:42:33 +00:00
width: var(--main-width);
margin-left: auto;
margin-right: auto;
2022-03-20 21:48:45 +00:00
margin-bottom: 3em;
2022-03-01 17:42:33 +00:00
}
h1,
h2 {
2022-03-20 21:48:45 +00:00
text-align: left;
2020-07-28 16:13:04 +00:00
font-family: Faktos;
padding: 0px;
margin: 0px;
}
2022-03-20 21:48:45 +00:00
h1 {
font-size: var(--font-scale-15);
}
2020-07-28 19:49:08 +00:00
h2 {
flex: 1;
2022-03-20 21:48:45 +00:00
padding-left: 1em;
font-size: var(--font-scale-13);
}
header > a {
margin: 0px 2em;
font-size: var(--font-scale-10);
2020-07-28 16:13:04 +00:00
}
2022-03-01 17:42:33 +00:00
</style>