32 lines
882 B
HTML
32 lines
882 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>Offline – Jagd Apps</title>
|
||
<style>
|
||
* { box-sizing: border-box; }
|
||
body {
|
||
margin: 0;
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||
background: #f5f5f0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-height: 100vh;
|
||
padding: 2rem;
|
||
text-align: center;
|
||
}
|
||
.icon { font-size: 3rem; margin-bottom: 1rem; }
|
||
h1 { color: #1a1a1a; font-size: 1.5rem; margin: 0 0 0.5rem; }
|
||
p { color: #555; font-size: 1rem; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="icon">📡</div>
|
||
<h1>Keine Verbindung</h1>
|
||
<p>Bitte prüfen Sie Ihre Internetverbindung und laden Sie die Seite neu.</p>
|
||
</body>
|
||
</html>
|