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

59 lines
1.2 KiB
Svelte
Raw Normal View History

2022-03-20 21:48:45 +00:00
<Card>
2022-04-17 16:59:37 +00:00
<div slot="header" class="header">
<h2>Welcome to the docks</h2>
<p class="version">version {import.meta.env.PACKAGE_VERSION}</p>
</div>
2020-07-28 21:20:30 +00:00
2021-06-13 17:21:00 +00:00
<p>
This app is a ship builder for the game
<a href="https://shop.groundzerogames.co.uk/rules.html">Full Thrust</a>
.
</p>
2020-07-28 21:20:30 +00:00
2021-06-13 17:21:00 +00:00
<p>
2022-03-20 21:48:45 +00:00
The contruction rules are following the
2021-06-13 17:21:00 +00:00
<a href="http://members.ozemail.com.au/~laranzu/fullthrust/rules/">
Cross Dimensions rules
</a>
as closely as possible.
</p>
2020-07-28 21:20:30 +00:00
2021-06-13 17:21:00 +00:00
<p>
2022-03-01 17:42:33 +00:00
The app is mostly developed for Firefox. I also check as much as I can that
I don't mess things too badly on Chrome. For the other browsers... caveat
emptor.
2021-06-13 17:21:00 +00:00
</p>
2021-06-13 17:21:00 +00:00
<p>
Written by
<a href="https://twitter.com/yenzie">Yanick Champoux</a>
. Code available on
2022-04-17 16:59:37 +00:00
<a href="https://github.com/aotds/aotds-shipyard">Github</a>.
2021-06-13 17:21:00 +00:00
</p>
2022-03-20 21:48:45 +00:00
</Card>
2021-06-13 17:21:00 +00:00
<script>
2022-04-17 16:59:37 +00:00
import { Modal, Card } from "svelte-chota";
2021-06-13 17:21:00 +00:00
</script>
2020-07-28 21:20:30 +00:00
<style>
2022-04-17 16:59:37 +00:00
h2 {
2022-03-20 21:48:45 +00:00
font-size: var(--font-scale-14);
font-family: Faktos;
2022-04-17 16:59:37 +00:00
margin-bottom: 0px;
2020-07-28 21:20:30 +00:00
}
2022-04-17 16:59:37 +00:00
.header {
margin-bottom: 1em;
display: flex;
align-items: baseline;
2020-07-28 21:20:30 +00:00
}
2022-04-17 16:59:37 +00:00
p {
2022-03-20 21:48:45 +00:00
margin-left: 2em;
2022-04-17 16:59:37 +00:00
}
.version {
flex: 1;
text-align: right;
}
2020-07-28 21:20:30 +00:00
</style>