status-pages/errors/error.html

80 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="robots" content="noindex, nofollow" />
<title>Oops! You're lost</title>
<style>
html,
body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
body {
cursor: default;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
color: #383e4b;
background-color: #f5f5f5;
}
h1 {
font-size: 4.5rem;
font-weight: 300;
margin: 0 1.5rem 0 0;
}
h4 {
font-size: 1.5rem;
margin: 0;
}
p {
font-weight: 500;
line-height: 1;
color: #9da0a8;
padding: 0;
margin: 0;
}
.container {
display: flex;
margin: 0;
align-items: center;
justify-content: center;
box-sizing: border-box;
height: 100%;
min-width: 380px;
}
.no-wrap {
flex-shrink: 0;
}
</style>
</head>
<body>
<div class="container">
<div>
<h1><!--# echo var="status" default="" --></h1>
</div>
<div class="no-wrap">
<h4>Oops! You're lost.</h4>
<p><!--# echo var="status_text" default="Something goes wrong" --></p>
</div>
</div>
</body>
</html>