-
Notifications
You must be signed in to change notification settings - Fork 62
/
maintenance.html
71 lines (58 loc) · 1.15 KB
/
maintenance.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<style>
body {
z-index: 1;
overflow: hidden;
width: 100%;
height: 100%;
top: 0;
left: 0;
position: fixed !important;
background: url('./landing_bg_z2020_lightblue.jpg') no-repeat center center fixed;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: sans-serif;
line-height: 1.15em;
}
.landing-inner {
margin-top: -20%;
max-width: 85%;
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 18px 32px 32px 32px;
border-radius: 2px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.landing-inner > div {
padding: 20px;
}
h4 {
margin-top: 0;
}
i {
font-style: normal;
font-size:2em;
}
</style>
<head>
<meta charset="UTF-8">
<title>Poinz</title>
<div class="landing-inner">
<div>
<i>!</i>
</div>
<div>
<h4>Sorry, we're in maintenance mode right now...</h4>
<p>Please check back later. We apologize for any inconvenience.</p>
</div>
</div>
</head>
<body>
</body>
</html>