forked from codeitcodes/codeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
71 lines (60 loc) · 1.62 KB
/
404.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>
<head>
<meta charset="utf-8">
<title>Codeit - Page not found</title>
<meta name="theme-color" content="#0e0e0e">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover,shrink-to-fit=no">
<link rel="shortcut icon" href="/icons/app-favicon.png">
<style>
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url('/fonts/Inter/Inter.var.woff2') format('woff2');
font-named-instance: 'Regular';
}
html {
height: 100%;
background: #0e0e0e;
color: #d4d5d7;
font-family: 'Inter', system-ui, sans-serif;
}
body {
display: flex;
flex-flow: column;
justify-content: center;
height: 100%;
margin: 0;
max-width: 500px;
margin: auto;
padding: 0 20px;
}
.title {
font-size: 19px;
margin-top: 0;
margin-bottom: 0;
position: relative;
text-align: center;
}
html, body {
text-rendering: optimizeLegibility;
font-feature-settings: "kern";
-webkit-font-feature-settings: "kern";
font-synthesis: none;
overscroll-behavior: none;
user-select: text;
-webkit-user-select: text;
-webkit-touch-callout: none;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
-webkit-overflow-scrolling: touch;
}
</style>
</head>
<body ontouchstart="">
<p class="title">Page not found</p>
</body>
</html>