mirror of
https://github.com/danbulant/Mangades
synced 2026-05-19 04:08:46 +00:00
21 lines
390 B
Svelte
21 lines
390 B
Svelte
<style lang="postcss">
|
|
.huge {
|
|
font-size: 12rem;
|
|
}
|
|
.e404 {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
<div class="e404">
|
|
<div class="huge">404</div>
|
|
<div class="big">
|
|
Page not found.
|
|
<!-- link to the parent folder of _fallback.svelte -->
|
|
<a href="/">Go back</a>
|
|
</div>
|
|
</div>
|