This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
maintenance.html
80 lines (78 loc) · 1.67 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
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maintenance | StyleBase</title>
<style>
html,
body {
margin: 0;
padding: 0;
background-color: #faf6f0;
}
main {
position: fixed;
top: 15%;
left: 50%;
transform: translateX(-50%);
text-align: center;
font-family: Helvetica, sans-serif;
font-size: 24px;
}
h1 {
font-size: 40px;
}
a {
color: #cc6333;
}
@media (prefers-color-scheme: dark) {
html,
body {
background-color: #191919;
color: #dddddd;
}
}
.container {
padding-right: 1rem;
padding-left: 1rem;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container {
max-width: 1320px;
}
}
</style>
</head>
<body>
<main>
<div class="container">
<h1>The site is down for maintenance</h1>
<p>Sorry for the inconvenience, we'll be back shortly!</p>
</div>
</main>
</body>
</html>