-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline.html
73 lines (72 loc) Β· 1.89 KB
/
offline.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
72
73
<!doctype html>
<html>
<head>
<title>Not Connected</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<style>
body {
width: 100%;
min-height: 100vh;
display: relative;
margin: 0;
padding: 0;
}
.wrapper {
position: absolute;
top: 50%;
left: 50%;
align-items: center;
justify-content: center;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
color: #ec7357;
font-weight: bold;
font-size: 50px;
letter-spacing: 5px;
line-height: 1rem;
text-shadow: 0 0 3px #ec7357;
}
h4 {
color: #ec7357;
font-weight: 300;
font-size: 16px;
}
.button {
display: block;
margin: 20px 0 0;
padding: 15px 30px;
letter-spacing: 5px;
border-radius: 0.4rem;
text-decoration: none;
background-color: #ec7357;
box-shadow:
inset 0.2rem 0.2rem 1rem #ff7d5e,
inset -0.2rem -0.2rem 1rem #bd5d46;
color: white;
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="wrapper">
<h1>OFFLINE</h1>
<h4>Please check your internet connection</h4>
<!-- <a href="https://github.com/hey-tossme" class="button">github</a>
<a
href="https://www.notion.so/trustmitt/0224991ff0d945879625f77d6a99218b"
class="button"
>notion</a
> -->
</div>
</body>
</html>