-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (158 loc) · 4.18 KB
/
index.html
File metadata and controls
176 lines (158 loc) · 4.18 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Leave me alone im tired</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--brand-color: #8cb9d5;
--brand-color-darker: #84bcec;
--brand-dark: #367296;
--brand-light: #c7ddeb;
--text-primary: #1f3a4d;
--text-secondary: #2b3e4f;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
background: linear-gradient(135deg, #367296 0%, #5398c1 50%, #8cb9d5 100%);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 80%, rgba(199, 221, 235, 0.2) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(140, 185, 213, 0.2) 0%, transparent 50%);
pointer-events: none;
}
.container {
max-width: 650px;
width: 100%;
position: relative;
z-index: 1;
}
.card {
background: #ffffff;
border-radius: 24px;
padding: 4rem 3rem;
box-shadow:
0 20px 60px rgba(54, 114, 150, 0.3),
0 0 0 1px rgba(140, 185, 213, 0.1);
text-align: center;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: linear-gradient(90deg, #367296, #5398c1, #8cb9d5, #c7ddeb);
}
.icon-wrapper {
width: 100px;
height: 100px;
margin: 0 auto 2rem;
background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 24px rgba(54, 114, 150, 0.25);
}
.icon-wrapper svg {
width: 50px;
height: 50px;
fill: white;
}
h1 {
font-size: 2.25rem;
color: var(--text-primary);
margin-bottom: 1.5rem;
font-weight: 600;
line-height: 1.2;
}
p {
color: var(--text-secondary);
font-size: 1.15rem;
line-height: 1.8;
margin-bottom: 1rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
p:last-of-type {
margin-bottom: 2.5rem;
}
.status-badge {
display: inline-block;
padding: 14px 32px;
background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
color: white;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
letter-spacing: 0.5px;
box-shadow: 0 4px 15px rgba(54, 114, 150, 0.3);
}
.divider {
width: 60px;
height: 3px;
background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
margin: 2rem auto;
}
@media (max-width: 640px) {
.card {
padding: 3rem 2rem;
}
h1 {
font-size: 1.75rem;
}
p {
font-size: 1rem;
}
.icon-wrapper {
width: 80px;
height: 80px;
}
.icon-wrapper svg {
width: 40px;
height: 40px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="icon-wrapper">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm0-10h2v8h-2z"/>
</svg>
</div>
<h1>Sorry, Not in Service</h1>
<div class="divider"></div>
<p>Sorry mybustimes is a bit broken at the moment.</p>
<p>Kai is trying to fix it but is currently in not at home so this will take some time.</p>
<div class="status-badge">WAKE UP ETA: 3am 15/02/2026</div>
</div>
</div>
</body>
</html>