-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (69 loc) · 2.11 KB
/
index.html
File metadata and controls
70 lines (69 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MyBusTimes is Down</title>
<style>
:root {
--brand-color: #8cb9d5;
--brand-color-darker: #84bcec;
--brand-color-darker-darker: #7cb5e7;
--border-color: var(--brand-color-darker);
--border-color-darker: var(--brand-color-darker-darker);
--background-color: #eee;
--text-color: #000;
--link-color: #3b42a2;
--viewed-color: #84aec8;
--header-image: linear-gradient(121deg, #8cb9d5 17%, transparent 17.05%),
linear-gradient(-37deg, #c7ddeb 20%, transparent 20.05%),
linear-gradient(23deg, #aecee1 46%, transparent 46.05%),
linear-gradient(-187deg, #367296 49%, transparent 49.05%),
linear-gradient(0deg, #5398c1 100%, transparent 100.05%);
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: var(--header-image);
color: var(--text-color);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.box {
max-width: 520px;
padding: 2rem;
background: #ffffff;
border-radius: 16px;
border: 2px solid var(--border-color);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
h1 {
margin: 0 0 1rem;
font-size: 1.8rem;
color: #1f3a4d;
}
p {
margin: 0.6rem 0;
line-height: 1.5;
color: #2b3e4f;
}
.note {
margin-top: 1rem;
font-size: 0.9rem;
color: #4b6b82;
}
</style>
</head>
<body>
<div class="box">
<h1>MyBusTimes is currently offline</h1>
<p>The site experienced an internal failure and is currently being fully restored.</p>
<p><strong>No data has been lost</strong>, but the restore process is complex and will take some time.</p>
<p>Please do <strong>not</strong> report this as a bug.</p>
<p class="note">Thanks for your patience while we get everything back online.</p>
</div>
</body>
</html>