-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
84 lines (84 loc) · 2.59 KB
/
Copy pathoffline.html
File metadata and controls
84 lines (84 loc) · 2.59 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
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline | Sai Leela Rahasya</title>
<style>
:root {
--ochre: #cc7722;
--background: #ffffff;
--text: #1f2937;
}
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--background);
color: var(--text);
text-align: center;
padding: 20px;
}
.icon-container {
width: 80px;
height: 80px;
background: var(--ochre);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
box-shadow: 0 10px 25px -5px rgba(204, 119, 34, 0.4);
}
svg {
width: 40px;
height: 40px;
color: white;
}
h1 {
font-size: 24px;
font-weight: 800;
margin-bottom: 8px;
color: #111827;
}
p {
font-size: 16px;
color: #6b7280;
max-width: 280px;
line-height: 1.5;
margin-bottom: 32px;
}
.retry-button {
background-color: var(--ochre);
color: white;
border: none;
padding: 12px 24px;
border-radius: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 14px;
}
.retry-button:active {
transform: scale(0.95);
}
</style>
</head>
<body>
<div class="icon-container">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z" />
</svg>
</div>
<h1>Seek Grace in Silence</h1>
<p>It seems your connection is resting. Please check your network to continue your spiritual journey.</p>
<button class="retry-button" onclick="window.location.reload()">Retry Connection</button>
</body>
</html>