bundlewrap/data/nginx/files/error.html

74 lines
2.2 KiB
HTML
Raw Normal View History

2021-08-07 18:35:12 +00:00
<!DOCTYPE html>
<html>
<head>
2021-08-07 19:22:56 +00:00
<title>Server Error</title>
2021-08-07 19:59:07 +00:00
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>❌</text></svg>">
2021-08-07 18:35:12 +00:00
<meta charset="utf-8">
2021-08-07 19:59:07 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
:root {
--text-color: #111;
--bg-color: #FFFFFF;
--line-color: #FF0000;
--page-width: 70%;
}
2021-08-07 19:22:56 +00:00
2021-08-07 19:59:07 +00:00
@media (prefers-color-scheme: dark) {
:root {
--text-color: #FFFFFF;
--bg-color: #222222;
--line-color: #800000;
}
}
@media screen and (max-width: 800px) {
:root {
--page-width: 95%;
}
}
2021-08-07 19:22:56 +00:00
2021-08-07 19:59:07 +00:00
* {
font-family: "Segoe UI", system-ui, "Roboto", "Helvetica Neue", "Arial";
color: var(--text-color);
margin: 0;
padding: 0;
}
html {
background-color: var(--bg-color);
}
.header{
2021-08-07 20:01:40 +00:00
border-bottom-width: 10px;
2021-08-07 19:59:07 +00:00
border-bottom-style: solid;
border-bottom-color: var(--line-color);
padding-bottom: 1em
}
h1{
vertical-align: middle;
2021-08-07 20:01:40 +00:00
margin: 0 auto;
2021-08-07 19:59:07 +00:00
width: var(--page-width);
}
.emoji{
vertical-align: middle;
2021-08-07 20:01:40 +00:00
font-size: 3em;
2021-08-07 19:59:07 +00:00
margin-right: 0.5em;
}
.text{
2021-08-07 20:01:40 +00:00
margin: 1em auto;
2021-08-07 19:59:07 +00:00
width: var(--page-width);
font-size: 1.5em;
}
</style>
2021-08-07 18:35:12 +00:00
</head>
<body>
2021-08-07 19:59:07 +00:00
<div class="content">
<div class="header" >
<h1><span class="emoji"></span> Server Error</h1>
</div>
<div class="text">
<p>Dieses System ist aktuell nicht verfügbar.</p>
<p>This system is currently unavailable.</p>
</div>
</div>
2021-08-07 18:35:12 +00:00
</body>
</html>