-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-offline.html
47 lines (43 loc) · 1.18 KB
/
index-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
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Nov 2018</title>
<meta name="description" content="Collect all the stars as fast as possible! More and more deadly bombs will appear.">
<meta name="theme-color" content="#168db5">
<style>
body {
background-color: #58BBDC;
font-family: 'Times New Roman', Times, serif;
text-align: center;
font-size: 16px;
}
h1 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 2em;
margin: 0 0 .5em;
}
p {
font-size: 1.4em;
}
.online {
position: absolute;
background-color: white;
color: #168db5;
padding: 1em 1.5em .5em;
border-radius: 1em;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class='online'>
<h1>Game is offline</h1>
<p>Where is your Internet? lol!</p>
</div>
</body>
</html>