-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path404.html
More file actions
50 lines (49 loc) · 1.21 KB
/
404.html
File metadata and controls
50 lines (49 loc) · 1.21 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
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TerriaJS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="//fonts.googleapis.com/css?family=Roboto:300,600"
rel="stylesheet"
type="text/css"
/>
<style>
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
color: #111827;
}
.error-number {
font-family: inherit;
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
margin: 0;
padding-right: 1rem;
border-right: 1px solid #dee2e6;
}
.error-description {
font-family: inherit;
font-size: 1.25rem;
font-weight: 400;
line-height: 1.2;
margin: 0;
}
</style>
</head>
<body>
<h1 class="error-number">404</h1>
<div class="inline-block align-middle">
<h2 class="error-description" id="desc">Not found.</h2>
</div>
</body>
</html>