-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path500.html
58 lines (49 loc) · 1.4 KB
/
500.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PPE-Exchange Under Maintenance</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Lato|Roboto+Slab');
* {
position: relative;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.centered {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
margin-bottom: 50px;
font-family: 'Lato', sans-serif;
font-size: 50px;
}
.message {
display: inline-block;
line-height: 1.2;
transition: line-height .2s, width .2s;
overflow: hidden;
}
.message,
.hidden {
font-family: 'Roboto Slab', serif;
font-size: 18px;
}
</style>
</head>
<body>
<section class="centered">
<h1>This site is currently under maintenance</h1>
<div class="container">
<span class="message">Please check back in a few minutes</span> <br><br>
<span class="message" style="color: rgb(100, 100, 100)">- PPE Exchange Progamming Team</span>
</div>
</section>
</body>
</html>