67 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline | Electronics Reference Library</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f7f3ee;
color: #2c3e5a;
font-family: Georgia, 'Times New Roman', serif;
padding: 2rem;
text-align: center;
}
.icon {
margin-bottom: 2rem;
opacity: 0.5;
}
h1 {
font-size: 1.75rem;
margin-bottom: 0.75rem;
letter-spacing: -0.02em;
}
p {
font-family: system-ui, -apple-system, sans-serif;
color: #6b7f99;
font-size: 0.95rem;
max-width: 28rem;
line-height: 1.6;
margin-bottom: 2rem;
}
button {
font-family: system-ui, -apple-system, sans-serif;
padding: 0.625rem 1.5rem;
border: 1px solid #c5cdd8;
border-radius: 0.5rem;
background: white;
color: #2c3e5a;
font-size: 0.875rem;
cursor: pointer;
transition: background 0.15s ease, border-color 0.15s ease;
}
button:hover {
background: #eef1f5;
border-color: #a0aec0;
}
</style>
</head>
<body>
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="#3b5998" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/>
<path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/>
</svg>
</div>
<h1>You're offline</h1>
<p>Previously viewed pages and downloaded PDFs may still be available. Check your connection and try again.</p>
<button onclick="location.reload()">Try again</button>
</body>
</html>