initial commit

This commit is contained in:
Rich Harris
2018-08-25 13:03:34 -04:00
commit a69b70e745
34 changed files with 936 additions and 0 deletions

29
routes/_error.html Normal file
View File

@@ -0,0 +1,29 @@
<svelte:head>
<title>{status}</title>
</svelte:head>
<h1>{status}</h1>
<p>{error.message}</p>
<style>
h1, p {
margin: 0 auto;
}
h1 {
font-size: 2.8em;
font-weight: 700;
margin: 0 0 0.5em 0;
}
p {
margin: 1em auto;
}
@media (min-width: 480px) {
h1 {
font-size: 4em;
}
}
</style>