-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
67 lines (61 loc) · 1.42 KB
/
offline.html
File metadata and controls
67 lines (61 loc) · 1.42 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
<!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="#0f1115">
<title>UrZen Offline</title>
<style>
:root {
color-scheme: dark;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
font-family: "Segoe UI", sans-serif;
background: radial-gradient(circle at 20% 20%, #1a2030 0%, #0f1115 60%, #0a0c10 100%);
color: #f2f4f8;
}
.card {
width: min(520px, 100%);
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(17, 20, 26, 0.85);
backdrop-filter: blur(8px);
border-radius: 16px;
padding: 24px;
text-align: center;
}
h1 {
margin: 0 0 12px;
font-size: 28px;
}
p {
margin: 0 0 18px;
color: #c7ced9;
line-height: 1.5;
}
a {
display: inline-block;
color: #ffffff;
text-decoration: none;
font-weight: 700;
background: #ff6f91;
border-radius: 10px;
padding: 10px 16px;
}
</style>
</head>
<body>
<main class="card">
<h1>You are offline</h1>
<p>UrZen is not connected to the network right now. Reconnect and reload to sync data and streaming content.</p>
<a href="/">Try again</a>
</main>
</body>
</html>