-
Notifications
You must be signed in to change notification settings - Fork 5
/
offline.html
43 lines (39 loc) · 847 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Node Template</title>
<style>
* {
margin: 0;
padding: 0;
}
div {
align-items: center;
background: #000;
box-sizing: border-box;
color: #fff;
cursor: default;
display: flex;
font-family: 'Arial';
font-size: 1.6rem;
height: 100%;
justify-content: center;
left: 0;
padding: 4rem;
position: fixed;
text-align: center;
top: 0;
width: 100%;
z-index: 4;
}
</style>
</head>
<body>
<div>
<p>
This experience is only available with internet connection.
</p>
</div>
</body>
</html>