mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-12 10:25:16 +00:00
31 lines
367 B
HTML
31 lines
367 B
HTML
<svelte:head>
|
|
<title>Not found</title>
|
|
</svelte:head>
|
|
|
|
<h1>Not found</h1>
|
|
|
|
<p>Please check the URL</p>
|
|
|
|
<style>
|
|
h1, p {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.8em;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
|
|
p {
|
|
margin: 1em auto;
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
h1 {
|
|
font-size: 4em;
|
|
}
|
|
}
|
|
</style> |