-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
30 lines (30 loc) · 860 Bytes
/
offline.html
File metadata and controls
30 lines (30 loc) · 860 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#111213">
<title>Flow — Offline</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #111213;
color: rgba(255,255,255,0.8);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
text-align: center;
}
h1 { color: #4ecdc4; margin: 0 0 0.5rem; font-size: 2rem; }
p { opacity: 0.6; margin: 0; }
</style>
</head>
<body>
<div>
<h1>Flow</h1>
<p>You're offline. Please check your connection.</p>
</div>
</body>
</html>