-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
269 lines (244 loc) · 10.3 KB
/
Copy path404.html
File metadata and controls
269 lines (244 loc) · 10.3 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 — Not Found</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<style>
:root {
color-scheme: dark;
--bg: #060816;
--bg-alt: #11182b;
--panel: rgba(10, 15, 30, 0.72);
--panel-border: rgba(120, 138, 255, 0.18);
--text: #e6edf7;
--muted: #9fb0c8;
--cyan: #72e7ff;
--pink: #ff5bbd;
--violet: #8a6dff;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100dvh;
display: flex;
align-items: center;
justify-content: center;
background:
radial-gradient(circle at top left, rgba(114, 231, 255, 0.12), transparent 40%),
radial-gradient(circle at bottom right, rgba(255, 91, 189, 0.12), transparent 40%),
linear-gradient(155deg, var(--bg) 0%, #0a1020 52%, var(--bg-alt) 100%);
background-attachment: fixed;
color: var(--text);
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
padding: 2rem 1.5rem;
overflow-wrap: anywhere;
}
/* Rainbow scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #ff5bbd, #8a6dff, #72e7ff);
border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #ff7cd6, #a38dff, #94f0ff);
}
* { scrollbar-width: thin; scrollbar-color: #8a6dff #060816; }
main {
width: min(100%, 65rem);
padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
text-align: center;
border-radius: 24px;
background: var(--panel);
border: 1px solid var(--panel-border);
backdrop-filter: blur(18px);
}
.brand { width: 52px; height: 52px; margin: 0 auto 1rem; filter: drop-shadow(0 0 10px rgba(114,231,255,0.25)); }
h1 {
font-size: 3.5rem;
margin: 0 0 0.25rem;
background: linear-gradient(135deg, #ffffff, var(--cyan), #d8c8ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.subtitle { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.verse {
font-style: italic;
color: var(--muted);
line-height: 1.75;
margin: 0 auto 1.25rem;
font-size: 1.05rem;
max-width: 44rem;
}
.verse em { color: #ffffff; font-style: normal; }
blockquote {
margin: 0 auto 1.25rem;
padding: 1.25rem 1.5rem;
max-width: 55rem;
border-left: 3px solid var(--violet);
background: rgba(138, 109, 255, 0.08);
border-radius: 0 12px 12px 0;
text-align: left;
color: var(--muted);
line-height: 1.7;
font-size: 0.98rem;
}
blockquote em { color: #ffffff; font-style: normal; }
blockquote cite {
display: block;
margin-top: 0.75rem;
font-style: normal;
font-size: 0.82rem;
color: var(--muted);
text-align: center;
}
.sources {
color: var(--muted);
font-size: 0.82rem;
line-height: 1.6;
margin: 0 auto 1.25rem;
}
.sources a { color: var(--violet); text-decoration: none; }
.sources a:hover { text-decoration: underline; }
.cta {
display: inline-block;
margin-top: 0.5rem;
padding: 0.85rem 1.35rem;
border-radius: 999px;
background: linear-gradient(135deg, rgba(255, 91, 189, 0.95), rgba(114, 231, 255, 0.92));
color: #071423;
text-decoration: none;
font-weight: 800;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(114, 231, 255, 0.16); }
.how-this-works {
margin: 2rem auto 0;
padding: 1rem 1.25rem;
max-width: 44rem;
border: 1px dashed var(--panel-border);
border-radius: 12px;
font-size: 0.8rem;
color: var(--muted);
line-height: 1.6;
}
.how-this-works em { color: #ffffff; font-style: italic; }
.how-this-works code {
background: rgba(138, 109, 255, 0.12);
padding: 0.15rem 0.4rem;
border-radius: 4px;
font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
}
.how-this-works a { color: var(--violet); text-decoration: none; }
.how-this-works a:hover { text-decoration: underline; }
/* redirect-only view */
.redirect-view h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.redirect-view .subtitle { margin-bottom: 0; }
</style>
</head>
<body>
<!-- Teaching view -->
<main id="teach-view">
<img class="brand" src="/favicon.svg" alt="drasticstatic" width="52" height="52" />
<h1>404</h1>
<br>
<a class="cta" href="https://drasticstatic.github.io/">Return to the Path ↗</a>
<br><br><br>
<h1>Lost?</h1>
<p class="subtitle">
You looked where you expected to find it...
</p>
<blockquote>
"⁷<em>But think you not the picture is destroyed in any way.</em> ⁸<em>What God creates is safe from all corruption, unchanged and perfect in eternity.</em>
7¹<em>Accept God’s frame instead of yours, and you will see the masterpiece.</em>"
<cite>~ <em>ACIM</em>, T-25.II.6:7–7:1 —
<a href="https://acim.org/acim/en/s/286" target="_blank" rel="noopener">FIP Edition ↗</a><br>
</cite>
</blockquote>
<p class="subtitle">
The mind seeks in form what only Spirit can give
</p>
<blockquote>
"⁵<em>Forget what you have seen, and raise your eyes in faith to what you now can see.</em>"
<cite>~ <em>ACIM</em>, T-19.III.10:5 —
<a href="https://acim.org/acim/en/s/231" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite>
</blockquote>
<p class="verse">
<br>The <em>Strength</em> in you is all you need.<br>
</p>
<blockquote>
"⁶<em>And it is by his own desire that he is freed.</em> ⁷<em>Such is his strength, and not his weakness.</em>"
<cite>~ <em>ACIM</em>, T-21.VI.11:6-7 —
<a href="https://acim.org/acim/en/s/257" target="_blank" rel="noopener">FIP Edition ↗</a><br>
</cite>
<br>
"<em>knowledge can always be remembered, never having been destroyed.</em>"
<cite>~ <em>ACIM</em>, T-3.IV.6:10 —
<a href="https://acim.org/acim/en/s/74" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite>
</blockquote>
<p class="verse">
<br>So seek no longer in a place that does not hold the Answer
</p>
<blockquote>
"⁶<em>The purpose of the Atonement is to restore everything to you; or rather, to restore it to your awareness.</em>"
<cite>~ <em>ACIM</em>, T-1.IV.3:6 —
<a href="https://acim.org/acim/en/s/56" target="_blank" rel="noopener">FIP Edition ↗</a><br>
</cite>
<br>
"⁴<em>Would God leave anyone without a very present help in time of trouble; a savior who can symbolize Himself?</em>"
<cite>~ <em>ACIM</em>, M-23.7:4 —
<a href="https://acim.org/acim/en/s/838" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite>
</blockquote>
<div class="how-this-works">
<strong>How this works:</strong><br><br>
A normal <code>404</code> instantly redirects to the homepage via <br><code>const isTeach = window.location.search.includes("teach")</code>
<br><br>Adding <code>?teach</code> to any 404 path
<br>( ie: <code>drasticstatic.github.io/404?teach</code> )
<br>reveals this page as a gentle reminder<br><br>
³<em>"It is thus a teaching device and a means to an end."</em><br>
<cite>~ <em>ACIM</em>, T-1.I.15:3 —
<a href="https://acim.org/acim/en/s/53" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite><br>
<br>¹⁵<em>"How can what is fully shared be withheld and then revealed?"</em><br>
<cite>~ <em>ACIM</em>, T-7.I.7:14-15 —
<a href="https://acim.org/acim/en/s/107" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite><br>
</div><br><br>
<blockquote>
"2¹<em>How can you wake children in a more kindly way than by a gentle Voice that will not frighten them, but will merely remind them that the night is over and the light has come?</em>"
<cite>~ <em>ACIM</em>, T-6.V.2:1 —
<a href="https://acim.org/acim/en/s/102" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite>
<br>
"²<em>And turn you to the stately calm within, where in holy stillness dwells the living God you never left, and Who never left you.</em> ³<em>The Holy Spirit takes you gently by the hand, and retraces with you your mad journey outside yourself, leading you gently back to the truth and safety within.</em>"
<cite>~ <em>ACIM</em>, T-18.I.8:2-3 —
<a href="https://acim.org/acim/en/s/219" target="_blank" rel="noopener">FIP Edition ↗</a>
</cite>
</blockquote><br>
<a class="cta" href="https://drasticstatic.github.io/">Return to the Path ↗</a>
<div class="sources">
<br><br>Source:<br>
<a href="https://acim.org/acim/lesson-191/i-am-the-holy-son-of-god-himself/en/s/599" target="_blank" rel="noopener">A Course In Miracles — Lesson 191 ↗</a><br>
</div>
</main>
<!-- Redirect view -->
<main id="redirect-view" class="redirect-view" style="display:none;">
<h1>404 — Not Found</h1>
<p class="subtitle">Redirecting to <a href="https://drasticstatic.github.io/">drasticstatic.github.io</a>...</p>
</main>
<script>
const isTeach = window.location.search.includes("teach");
if (!isTeach) {
document.getElementById("teach-view").style.display = "none";
document.getElementById("redirect-view").style.display = "block";
window.location.href = "https://drasticstatic.github.io/";
}
</script>
</body>
</html>