-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintanance.php
64 lines (54 loc) · 1.04 KB
/
maintanance.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Website Under Maintenance</title>
<style>
body {
background-color: #ebebeb;
font-family: sans-serif;
text-align: center;
}
h1 {
color: #333333;
font-size: 32px;
margin: 20px 0;
}
p {
color: #555555;
font-size: 16px;
margin: 0;
}
/* Mobile view */
@media (max-width: 767px) {
h1 {
font-size: 24px;
}
p {
font-size: 14px;
}
}
/* Tablet view */
@media (min-width: 768px) and (max-width: 991px) {
h1 {
font-size: 28px;
}
p {
font-size: 16px;
}
}
/* Desktop view */
@media (min-width: 992px) {
h1 {
font-size: 32px;
}
p {
font-size: 18px;
}
}
</style>
</head>
<body>
<h1>We're sorry, but the website is currently under maintenance</h1>
<p>We apologize for the inconvenience. Please check back later.</p>
</body>
</html>