This commit is contained in:
Didier Slof 2023-02-19 15:11:44 +01:00
parent 77bb8de20c
commit 9e42053523
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,40 @@
<html>
<head>
<title>503 Error</title>
<style>
:root {
--background: #1e1e1e;
--foreground: #d4d4d4;
--accent: #007acc;
}
body {
display: grid;
place-items: center;
background: var(--background);
color: var(--foreground);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
}
h1 {
font-size: 2em;
margin: 0;
margin-bottom: 0.5em;
}
p {
margin: 0;
}
a {
color: var(--accent);
text-decoration: none;
}
</style>
</head>
<body>
<h1>503 Error</h1>
<p>Sorry, the server is currently unavailable. Please try again later.</p>
</body>
</html>