bw/nginx moar fancy css

This commit is contained in:
Sophie Schiller 2021-08-07 21:22:56 +02:00
parent a09953a849
commit 856c9be73f

View file

@ -1,43 +1,71 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Internal Server Error</title> <title>Server Error</title>
<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>"> <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>">
<meta charset="utf-8"> <meta charset="utf-8">
<style> <meta name="viewport" content="width=device-width, initial-scale=1.0">
body{ <style type="text/css">
font-family: "Segoe UI", system-ui, "Roboto", "Helvetica Neue", "Arial" :root {
} --text-color: #111;
.content{ --bg-color: #FFFFFF;
margin-top: 1em; --line-color: #FF0000;
margin-left: auto; --page-width: 70%;
margin-right: auto; }
width: 70%;
} @media (prefers-color-scheme: dark) {
.header{ :root {
margin-left: auto; --text-color: #FFFFFF;
margin-right: auto; --bg-color: #222222;
height: 8em; --line-color: #800000;
border-bottom: 10px solid red; }
} }
.emoji{ @media screen and (max-width: 800px) {
font-size:3em; :root {
vertical-align:middle; --page-width: 95%;
} }
.text{ }
margin-left: auto;
margin-right: auto; * {
font-size:1.5em; 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{
border-bottom-width: 10px;
border-bottom-style: solid;
border-bottom-color: var(--line-color);
padding-bottom: 1em
}
h1{
vertical-align: middle;
margin: 0 auto;
width: var(--page-width);
}
.emoji{
vertical-align: middle;
font-size: 3em;
margin-right: 0.5em;
}
.text{
margin: 1em auto;
width: var(--page-width);
font-size: 1.5em;
}
</style> </style>
</head> </head>
<body> <body>
<div class="content"> <div class="content">
<div class="header" > <div class="header" >
<h1><span class="emoji"></span><span style="vertical-align:middle;">Internal Server Error</span></h1> <h1><span class="emoji"></span> Server Error</h1>
</div> </div>
<div class="text"> <div class="text">
<p>The 500 (Internal Server Error) status code indicates that the server encountered an unexpected condition that prevented it from fulfilling the request.</p> <p>Dieses System ist aktuell nicht verfügbar.</p>
<p>This system is currently unavailable.</p>
</div> </div>
</div> </div>
</body> </body>