This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/proxy/config/error_pages/503.html
2023-02-19 15:26:27 +01:00

40 lines
No EOL
950 B
HTML

<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>