forked from michikrug/Worldopole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline.html
46 lines (37 loc) · 794 Bytes
/
offline.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Error</title>
<style>
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
#error {
width:90%;
margin:auto;
text-align:center;
margin-top:10em;
}
#error img {
max-width:90%;
}
#error h1 small {
font-weight:normal;
}
/* Let browser defaults do the rest */
</style>
</head>
<body>
<div id="error">
<center><img src="core/img/compass.png" width=100 alt="Compass"/></center>
<h1>Database cannot be reached. <br>
<small>Please try again later</small></h1>
</div>
</body>
</html>