This repository was archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaintenance.html
More file actions
77 lines (63 loc) · 1.72 KB
/
Copy pathmaintenance.html
File metadata and controls
77 lines (63 loc) · 1.72 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Site Maintenance</title>
<meta name="theme-color" content="black">
<!-- favicon --> <link rel="shortcut icon" type="image/png" href="/assets/images/icon.png" />
<style>
@font-face {
font-family: Menlo;
src: url('/assets/fonts/menlo.ttf') format("truetype");
}
body, html {
background-color: #eee;
height: 100%;
padding: 100%;
padding: 0;
margin: 0;
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
text-rendering: optimizeLegibility;
text-rendering: geometricPrecision;
font-smooth: always;
font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
}
h1, h2 {
padding: 0;
margin: 0;
text-align: left;
width: 100%;
font-family: Menlo;
color: #222;
font-weight: 100;
line-height: 1;
}
h1 {
font-size: 6vw;
}
h2 {
padding-top: 10%;
font-size: 4vw;
}
div {
width: 75%;
left: 10%;
top: 50%;
position: absolute;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
}
</style>
</head>
<body>
<div>
<h1 id="one">The site is temporarily closed for maintenance.</h1>
<h2 id="two">Check back soon!</h2>
</div>
</body>
</html>