forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
77 lines (77 loc) · 1.66 KB
/
Copy pathoffline.html
File metadata and controls
77 lines (77 loc) · 1.66 KB
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
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>StellarSplit — Offline</title>
<style>
:root {
color-scheme: dark;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0f172a;
color: #f8fafc;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
text-align: center;
padding: 24px;
box-sizing: border-box;
}
.card {
max-width: 360px;
}
.logo {
font-size: 22px;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 24px;
color: #f8fafc;
}
.icon {
font-size: 40px;
margin-bottom: 16px;
}
h1 {
font-size: 18px;
font-weight: 600;
margin: 0 0 8px;
}
p {
font-size: 14px;
line-height: 1.5;
color: #94a3b8;
margin: 0 0 24px;
}
button {
background: #6366f1;
color: #fff;
border: none;
border-radius: 8px;
padding: 10px 20px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}
button:hover {
opacity: 0.9;
}
</style>
</head>
<body>
<div class="card">
<div class="logo">StellarSplit</div>
<div class="icon">📡</div>
<h1>You're offline</h1>
<p>
We couldn't reach the network and this page wasn't cached yet.
Check your connection and try again — anything already loaded
will keep working offline.
</p>
<button onclick="location.reload()">Retry</button>
</div>
</body>
</html>