-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 1.38 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 1.38 KB
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
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.Message}}</title>
<style type="text/css">
html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
background: hwb(53 96% 10%);
color: hwb(53 16% 99%);
}
.message {
margin: 4rem auto 0;
text-align: center;
font-size: 1.3rem;
max-width: 30rem;
}
.response-code-and-title {
position: relative;
}
.response-code {
font-size: 11rem;
font-weight: 900;
color: hwb(53 96% 27%);
margin: 0;
}
.response-title {
width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
font-size: 1.9rem;
text-shadow: 0px 0px 0.4rem hwb(53 96% 10%);
}
.explanation {
line-height: 1.5;
text-wrap: balance;
}
</style>
</head>
<body>
<div class="message">
<div class="response-code-and-title">
<h1 class="response-code">502</h1>
<h2 class="response-title">Bad Gateway</h2>
</div>
<p class="explanation">Can't get a response from the container handling this route. Check the service logs for errors.</p>
</div>
</body>
</html>