-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathhylo-maintenance.html
More file actions
73 lines (65 loc) · 1.83 KB
/
Copy pathhylo-maintenance.html
File metadata and controls
73 lines (65 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #f5f5f5;
color: #333;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
width: 100%;
}
.maintenance-image {
max-width: 100%;
height: auto;
margin-bottom: 30px;
}
h1 {
font-size: 2rem;
margin-bottom: 15px;
}
p {
font-size: 1.1rem;
line-height: 1.5;
margin-bottom: 20px;
}
.estimated-time {
font-weight: bold;
margin-top: 20px;
}
@media (max-width: 768px) {
h1 {
font-size: 1.7rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<img src="https://hylo-app.s3.us-east-1.amazonaws.com/misc/upgrade-in-progress.svg" alt="Maintenance in Progress" class="maintenance-image">
<h1>We're Currently Undergoing a Transformation</h1>
<p>Thank you for your patience and understanding.</p>
<p class="estimated-time">Estimated completion time: 1 hour</p>
</div>
</body>
</html>