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

31 lines
491 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>
</header>
2020-07-28 16:13:04 +00:00
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;
}
h1,
h2 {
2020-07-28 16:13:04 +00:00
font-family: Faktos;
padding: 0px;
margin: 0px;
}
2020-07-28 19:49:08 +00:00
h2 {
text-align: right;
flex: 1;
2020-07-28 16:13:04 +00:00
padding-left: 2em;
font-size: var(--font-scale-12);
}
2022-03-01 17:42:33 +00:00
</style>