66 lines
1.8 KiB
HTML
66 lines
1.8 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="no">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<title>Ingen nettforbindelse — TeeCup</title>
|
||
|
|
<style>
|
||
|
|
html, body {
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||
|
|
background: #ffffff;
|
||
|
|
color: #1c261d;
|
||
|
|
}
|
||
|
|
@media (prefers-color-scheme: dark) {
|
||
|
|
html, body { background: #1c261d; color: #f2f7ee; }
|
||
|
|
}
|
||
|
|
.wrap {
|
||
|
|
min-height: 100%;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 1rem;
|
||
|
|
padding: 2rem;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.icon {
|
||
|
|
width: 64px;
|
||
|
|
height: 64px;
|
||
|
|
border-radius: 18px;
|
||
|
|
background: #5a9c2f;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 28px;
|
||
|
|
}
|
||
|
|
h1 { font-size: 1.25rem; margin: 0; }
|
||
|
|
p { max-width: 28rem; line-height: 1.5; opacity: 0.75; margin: 0; }
|
||
|
|
button {
|
||
|
|
margin-top: 0.5rem;
|
||
|
|
border: none;
|
||
|
|
border-radius: 14px;
|
||
|
|
background: #5a9c2f;
|
||
|
|
color: white;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
padding: 0.75rem 1.5rem;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="wrap">
|
||
|
|
<div class="icon" aria-hidden="true">⛳</div>
|
||
|
|
<h1>Ingen nettforbindelse</h1>
|
||
|
|
<p>
|
||
|
|
Denne siden er ikke tilgjengelig offline ennå. Har du åpnet et scorekort
|
||
|
|
tidligere, kan du fortsette å registrere score der — det lagres lokalt
|
||
|
|
og sendes automatisk når du er tilbake på nett.
|
||
|
|
</p>
|
||
|
|
<button onclick="location.reload()">Prøv igjen</button>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|