-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
47 lines (43 loc) · 2.02 KB
/
Copy pathoffline.html
File metadata and controls
47 lines (43 loc) · 2.02 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Offline</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
:root {
color-scheme: dark;
color: #f3f3f3;
background: radial-gradient(circle at top, #2e4041 0%, #16202b 40%, #0a1218 100%);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.page-shell { width: 100%; max-width: 560px; }
.panel { background: rgba(24, 46, 60, 0.92); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; box-shadow: 0 24px 80px rgba(0,0,0,0.25); padding: 2rem; backdrop-filter: blur(14px); }
header { text-align: center; margin-bottom: 1rem; }
header h1 { margin: 0; font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.04em; }
p { color: #c8d7df; margin: 0 0 1rem; }
.app-link { display: inline-block; background: linear-gradient(135deg, #39a78a 0%, #2d8bcd 100%); color: #fff; text-decoration: none; padding: 0.9rem 1.2rem; border-radius: 16px; font-weight: 700; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.app-link:hover, .app-link:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 28px rgba(0,0,0,0.22); }
footer { margin-top: 1.75rem; font-size: 0.9rem; color: #8fa7b4; text-align: center; }
footer a { color: inherit; text-decoration: underline; }
</style>
</head>
<body>
<div class="page-shell">
<div class="panel">
<header>
<h1>Offline</h1>
</header>
<p>It looks like you're offline. Try again once you have a connection.</p>
<p><a class="app-link" href="index.html">Return to FOODS</a></p>
</div>
<footer>
<hr>
<div>Copyright © 2024-2026 <a title="https://ensadi.com" href="https://ensadi.com" target="_blank" rel="noreferrer noopener">Ensadi LLC</a> · <a href="about.html">About</a></div>
</footer>
</div>
</body>
</html>