Files
bunbun.dev/site/templates/error.html
2025-01-27 00:00:47 -08:00

55 lines
1.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg" />
<title>{{code}} {{message}}</title>
<style>
:root {
--foreground: #ffffff;
--background: #000000;
--accent-50: #adadad;
}
@media (prefers-color-scheme: light) {
:root {
--foreground: #000000;
--background: #ffffff;
--accent-50: #525252;
}
}
body {
display: flex;
flex-direction: column;
margin: 0;
justify-content: center;
align-items: center;
min-height: 100vh;
}
body {
background: var(--background);
font-family: "Roboto", sans-serif;
color: var(--foreground);
h1 {
margin: 0;
}
h3 {
margin: 0;
color: var(--accent-50);
}
}
</style>
</head>
<body>
<h1>{{code}}</h1>
<h3>{{message}}</h3>
</body>
</html>