forked from SynapseTechnologies/BuckysRoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maintenance.php
executable file
·50 lines (47 loc) · 1.41 KB
/
maintenance.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Buckysroom">
<meta name="keywords" content="Buckysroom">
<title>Buckysroom - Maintenance</title>
<link rel="stylesheet" href="/css/main.css" type="text/css" />
<style type="text/css">
#maintenance-box{
position: absolute;
width: 500px;
text-align: center;
padding: 40px 20px;
background: #555;
background: rgba(0, 0, 0, 0.5);
line-height: 2em;
margin-left: -260px;
left: 50%;
margin-top: 110px;
border-radius: 10px;
}
#maintenance-box h2{
font-size: 24px;
color: #fff;
line-height: 2em;
}
#maintenance-box p{
font-size: 15px;
color: #fff;
}
#wrapper{
position: relative;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="maintenance-box">
<img src="/images/mainLogo.png">
<h2>Maintenance Mode</h2>
<p>Buckysroom is currently undergoing scheduled maintenance.</p>
<p>Please try back in several minutes.</p>
</div>
</div>
</body>
</html>