-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
40 lines (35 loc) · 889 Bytes
/
offline.html
File metadata and controls
40 lines (35 loc) · 889 Bytes
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
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Offline</title>
<style>
html,
body {
height: 100%;
margin: 0;
background: #fff;
color: #111;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}
.wrap {
display: grid;
place-items: center;
gap: 16px;
height: 100%;
text-align: center;
padding: 24px;
}
.muted {
color: #6b7280;
}
</style>
</head>
<body>
<div class="wrap">
<h1>オフラインです</h1>
<p class="muted">ネットワーク接続を確認し、再度お試しください。</p>
</div>
</body>
</html>