-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
183 lines (161 loc) · 5.15 KB
/
index.html
File metadata and controls
183 lines (161 loc) · 5.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#000000" />
<title>Enspire</title>
<meta name="description" content="A short message from Compurterization about Enspire during the school's platform upgrade." />
<style>
:root {
--bg: #000000;
--card: rgb(14, 14, 14);
--border: rgba(255, 255, 255, 0.08);
--text: rgba(255, 255, 255, 0.92);
--muted: rgba(255, 255, 255, 0.65);
--link: #ffffff;
--ring: rgba(255, 255, 255, 0.18);
--shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
background: var(--bg);
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
min-block-size: 100svh; /* mobile-safe full height */
display: grid;
place-items: center;
padding: 6vmin 4vmin;
}
.card {
width: min(720px, 100%);
background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) var(--card);
border: 1px solid var(--border);
border-radius: 20px;
padding: clamp(20px, 5vmin, 40px);
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
animation: fadeIn 600ms ease-out;
}
/* subtle top highlight */
.card::before {
content: "";
position: absolute;
inset: -40% -20% auto -20%;
height: 60%;
background: radial-gradient(1200px 240px at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
pointer-events: none;
filter: blur(4px);
}
h1 {
margin: 0 0 14px;
font-weight: 700;
font-size: clamp(24px, 4.2vw, 36px);
letter-spacing: 0.2px;
}
p {
margin: 0;
line-height: 1.7;
font-size: clamp(15px, 2.4vw, 18px);
color: var(--text);
}
.muted { color: var(--muted); }
.stack > * + * { margin-top: 14px; }
.sig { margin-top: 18px; color: var(--muted); }
.divider {
height: 1px;
background: var(--border);
margin: 24px 0 14px;
}
.actions {
margin-top: 12px;
}
.link-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 16px;
margin: 4px 0;
border: 1px solid var(--border);
border-radius: 999px;
text-decoration: none;
color: var(--link);
font-weight: 600;
backdrop-filter: saturate(120%) blur(2px);
box-shadow: 0 1px 0 var(--ring) inset;
transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
will-change: transform;
}
.link-btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.link-btn:hover {
transform: translateY(-1px);
border-color: rgba(255,255,255,0.2);
box-shadow: 0 0 0 6px rgba(255,255,255,0.03), 0 10px 24px rgba(0,0,0,0.55);
}
.arrow { translate: 0 0; transition: translate 120ms ease; }
.link-btn:hover .arrow { translate: 2px 0; }
footer { margin-top: 8px; font-size: 12px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition: none !important; }
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<main>
<section class="card" role="region" aria-label="Enspire transition notice">
<div class="stack">
<h1>While things shift ...</h1>
<p>
Enspire began as a spark – something we built to learn, to organise, and to make our club feel a little more ours.</p>
<p>
Tools come and go; what stays is the community that uses them. If something breaks here, treat it as a reminder of why we code in the first place: to experiment, to adapt, to improve together.
</p>
<p class="sig">
Thanks for growing with us.
</p>
<p class="sig">
Qizhen Yang,<br/>
on behalf of the Enspire Dev Team<br/>
(Computerization)<br/>
August 2025
</p>
<div class="divider" aria-hidden="true"></div>
<div class="actions">
<a class="link-btn" href="https://computerization.io" target="_blank">
<span>Computerization</span>
<svg class="arrow" width="18" height="18" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M5 12h14M13 5l7 7-7 7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<a class="link-btn" href="https://github.com/Computerization/Enspire" target="_blank">
<span>Enspire on GitHub</span>
<svg class="arrow" width="18" height="18" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M5 12h14M13 5l7 7-7 7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<a class="link-btn" href="https://c13n.club" target="_blank">
<span>C13N Newsletter</span>
<svg class="arrow" width="18" height="18" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M5 12h14M13 5l7 7-7 7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<footer>Hopefully Enspire will be back.</footer>
</div>
</section>
</main>
</body>
</html>