summaryrefslogtreecommitdiff
path: root/static/offline.html
blob: 0cb1bdc832ae6653a4fefe9ead9157b5105ee905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sem conexão · Caderno</title>
<style>
  body { background:#0f0f13; color:#dedad4; font-family:'Georgia',serif; display:flex;
         align-items:center; justify-content:center; min-height:100vh; margin:0; text-align:center; padding:2rem; }
  h1 { font-size:1.2rem; margin-bottom:.75rem; }
  p  { font-size:.9rem; color:#6a6a75; }
  a  { color:#c9a961; }
</style>
</head>
<body>
  <div>
    <h1>Você está offline</h1>
    <p>Páginas já visitadas estão disponíveis em cache.<br>
       <a href="/">Voltar ao início</a></p>
  </div>
</body>
</html>