-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path50x.html
71 lines (66 loc) · 1.75 KB
/
50x.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>We are taking a REST</title>
<style type="text/css">
body {
font-family: 'Jetbrains Mono', Roboto, 'Segoe UI', Tahoma, Geneva,
Verdana, sans-serif;
}
header {
color: white;
background-image: linear-gradient(to right, #5f1ebe, #3c91ff);
height: 100px;
margin: 10px 20px;
border-radius: 5px;
}
h1 {
text-align: center;
line-height: 100px;
font-weight: normal;
margin: 0;
}
.container {
font-size: xx-large;
margin: 10px 20px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
border-radius: 8px;
color: #554c4c;
padding: 15px;
vertical-align: middle;
text-align: center;
}
footer {
color: white;
background-image: linear-gradient(to right, #5f1ebe, #3c91ff);
margin: 10px 20px;
border-radius: 5px;
padding: 10px;
text-align: center;
position: absolute;
bottom: 5px;
width: 95%;
}
footer a {
color: white;
}
</style>
</head>
<body>
<header>
<h1>50x happend</h1>
</header>
<div class="container">
<p>We are sorry, upstream services are taking a REST.</p>
<p>Try later and/or inform your admin, if you know who they are.</p>
</div>
<footer>
<a href="https://opensource.hcltechsw.com/domino-keep-docs"
>© 2022 HCL Domino REST API v1.0
</a>
</footer>
</body>
</html>