mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 11:49:34 +00:00
36 lines
1,014 B
HTML
36 lines
1,014 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Offline — DockFlare Mail</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: #0f172a;
|
|
color: #f8fafc;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
.card {
|
|
text-align: center;
|
|
padding: 2.5rem 2rem;
|
|
border: 1px solid #1e293b;
|
|
border-radius: 0.5rem;
|
|
max-width: 340px;
|
|
width: 100%;
|
|
}
|
|
h1 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
|
|
p { font-size: 0.875rem; color: #94a3b8; line-height: 1.5; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>You're offline</h1>
|
|
<p>DockFlare Mail will reconnect when your network is available.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|