-
Notifications
You must be signed in to change notification settings - Fork 1
/
400.html
executable file
·56 lines (51 loc) · 1.18 KB
/
400.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<!--Aegis Framework | MIT License | http://www.aegisframework.com/ -->
<html lang="en">
<head>
<title>Bad Request</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
text-align: center;
color: rgb(84, 84, 84);
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Open Sans", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
margin: 0;
}
body > div {
margin: 0 auto;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
position: absolute;
max-height: 100%;
}
h1 {
font-size: 4em;
font-weight: lighter;
}
h2 {
font-size: 2em;
font-weight: lighter;
}
</style>
</head>
<body>
<div>
<h1>Bad Request</h1>
<h2>The received request is invalid or malformed.</h2>
</div>
</body>
</html>