-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.html
47 lines (47 loc) · 1.15 KB
/
error.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
<!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" />
<title>Error</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
height: 100%;
background-color: #333;
}
.container {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.emoji {
display: flex;
justify-content: center;
font-size: 96px;
}
.caption {
color: white;
text-align: center;
text-decoration: none;
font-size: 28px;
font-family: "Ubuntu", sans-serif;
margin-top: 25px;
}
</style>
</head>
<body>
<div class="container">
<div class="emoji">🙅</div>
<div class="caption">This content is not available.</div>
</div>
</body>
</html>