-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopening.html
More file actions
373 lines (339 loc) · 12.6 KB
/
opening.html
File metadata and controls
373 lines (339 loc) · 12.6 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Openings | SphereLab</title>
<link rel="shortcut icon" href="./spherelab_icon.svg">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
background-color: #ffffff;
min-height: 100vh;
padding: 3rem 2rem;
}
body::before {
content: '';
position: fixed;
top: -150px;
right: -150px;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(233,149,191, 0.1);
z-index: -1;
}
body::after {
content: '';
position: fixed;
bottom: -100px;
left: -100px;
width: 200px;
height: 200px;
border-radius: 50%;
background-color: rgba(233,149,191, 0.1);
z-index: -1;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.main-title {
font-size: clamp(1.5rem, 4.5vw, 2.5rem);
font-weight: 900;
margin-bottom: clamp(1rem, 2vh, 1rem);
letter-spacing: -0.02em;
position: relative;
cursor: pointer;
background: linear-gradient(to right, #65b4d3, #60cdc9, #977ff9);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background-size: 200% 100%;
animation: gradientMove 2s linear infinite;
}
.main-title::before {
content: '';
position: absolute;
top: -0.5rem;
left: -1.5rem;
width: clamp(1.5rem, 3vw, 3rem);
height: clamp(1.5rem, 3vw, 3rem);
background-color: #c2e8f6;
border-radius: 50%;
transition: transform 0.2s ease;
z-index: -1;
}
.main-title:hover::before {
transform: scale(1.2);
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.subtitle {
position: fixed;
top: 2rem;
left: 2rem;
cursor: pointer;
text-decoration: none;
z-index: 10;
display: inline-block;
}
.header {
text-align: center;
margin-bottom: 1rem;
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.page-title {
font-size: clamp(2.5rem, 7vw, 4rem);
margin-bottom: 1rem;
position: relative;
display: inline-block;
font-weight: 900;
color: #3e3e3e;
}
.page-title::before {
content: '';
position: absolute;
top: -0.5rem;
left: -1rem;
width: clamp(2.5rem, 4vw, 3rem);
height: clamp(2.5rem, 4vw, 3rem);
background-color: #eeb2d0;
border-radius: 50%;
transition: transform 0.3s ease;
z-index: -1;
}
.page-title:hover::before {
transform: scale(1.2);
}
.intro {
max-width: 820px;
color: #555;
font-size: 1rem;
line-height: 1.6;
margin-top: 0.6rem;
text-align: center;
background: #f8fafc;
border: 1px solid #eee;
border-left: 6px solid #eeb2d0;
border-radius: 12px;
padding: 1.1rem 1.2rem;
box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.openings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1.2rem;
margin-top: 2rem;
}
.opening-card {
border: 1px solid #eee;
border-radius: 12px;
overflow: hidden;
background: #f8fafc;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.opening-card:hover {
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.opening-content {
padding: 1.2rem 1.2rem 1rem 1.2rem;
}
.opening-title {
font-size: 1.2rem;
font-weight: 800;
color: #000;
margin-bottom: 0.6rem;
}
.opening-venue {
font-size: 0.9rem;
font-weight: 700;
color: white;
letter-spacing: 0.03em;
background-color: rgb(194, 150, 173);
padding: 0.25rem 0.7rem;
border-radius: 6px;
display: inline-block;
width: fit-content;
box-shadow: 0 2px 4px rgba(149, 173, 228, 0.3);
margin-bottom: 0.8rem;
}
.opening-desc {
color: #444;
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 0.8rem;
}
.opening-list {
margin: 0 0 0.8rem 1.1rem;
color: #444;
font-size: 0.95rem;
line-height: 1.5;
}
.opening-tags {
display: flex;
gap: 0.4rem;
flex-wrap: wrap;
margin-bottom: 0.8rem;
}
.opening-tag {
font-size: 0.75rem;
color: #555;
background: #eef2f7;
padding: 0.2rem 0.5rem;
border-radius: 999px;
}
.opening-actions {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-top: 0.2rem;
}
/* Button style matching paper buttons */
.paper-link {
color: #333;
text-decoration: none;
font-size: 0.85rem;
display: inline-flex;
align-items: center;
padding: 0.2rem 0.6rem;
border-radius: 4px;
background-color: #e8e8e8;
transition: all 0.2s ease;
font-weight: 600;
width: fit-content;
border: none;
cursor: pointer;
}
.paper-link:hover {
background-color: #d8d8d8;
color: #000;
}
a {
color: #ae7792; /* closer to site blues */
text-decoration: none;
}
a:hover,
a:hover {
color: #e67300; /* slightly darker on hover */
text-decoration: none;
}
@media (max-width: 768px) {
body {
padding: 1.5rem 0.8rem;
}
.subtitle {
top: 0.8rem;
left: 0.8rem;
padding: 0.15rem 0.4rem 0.15rem 0.4rem;
border-radius: 8px;
}
.page-title { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 1rem; }
.intro { font-size: 0.9rem; padding: 0.8rem 0.8rem; border-left-width: 4px; line-height: 1.5; }
.openings-grid { gap: 0.8rem; }
.opening-content { padding: 0.8rem; }
.opening-title { font-size: 1rem; margin-bottom: 0.6rem; }
.opening-venue { font-size: 0.75rem; padding: 0.18rem 0.55rem; }
.opening-desc, .opening-list { font-size: 0.85rem; line-height: 1.4; }
.paper-link { font-size: 0.85rem; padding: 0.25rem 0.65rem; }
.opening-tags { gap: 0.5rem; margin: 0.8rem 0; }
.opening-tag { font-size: 0.8rem; padding: 0.2rem 0.6rem; }
}
</style>
</head>
<body>
<a href="index.html" class="subtitle">
<h1 class="main-title">SphereLab</h1>
</a>
<div class="container">
<div class="header">
<h1 class="page-title">Openings</h1>
<p class="intro">
We welcome highly motivated students and researchers to join SphereLab. Below are the current Openings.
If you are interested, apply by submitting <a href="https://forms.gle/YdBwtA1zRQemMZzs8">this Google Form</a>. Explore our recent research focus <a href="https://docs.google.com/document/d/1ln-BCYiYLRLILlmOCd7hzvW1ByF7pYK2FyB54VJRWCM/edit?usp=sharing">here</a>.
</p>
</div>
<div class="openings-grid">
<!-- PhD Students -->
<div class="opening-card">
<div class="opening-content">
<div class="opening-title">PhD Students</div>
<div class="opening-venue">Fall 2026</div>
<p class="opening-desc">We are currently looking for strong PhD applicants with backgrounds in machine learning, large-scale optimization and efficient ML systems.</p>
<ul class="opening-list">
<li>Self-motivated, curiosity-driven, responsible, good communication</li>
<li>Strong alignment in our lab’s research interest</li>
<li>Determination and ability to get things done (good mathematics, coding, etc.)</li>
</ul>
<div class="opening-tags">
<span class="opening-tag">Machine Learning</span>
<span class="opening-tag">LLM</span>
<span class="opening-tag">Optimization</span>
<span class="opening-tag">Systems</span>
</div>
<div class="opening-actions">
<a href="https://forms.gle/YdBwtA1zRQemMZzs8" class="paper-link">Apply via Google form</a>
<a href="https://www.cse.cuhk.edu.hk/admission/mphil-phd/" class="paper-link">Program Info</a>
</div>
</div>
</div>
<!-- Postdoctoral Researchers -->
<div class="opening-card">
<div class="opening-content">
<div class="opening-title">Postdoctoral Researchers</div>
<div class="opening-venue">Rolling Applications</div>
<p class="opening-desc">We invite candidates to work on scalable LLM training, formal/symbolic/math reasoning and principled generative modeling with us.</p>
<ul class="opening-list">
<li>Strong publication record in ML/AI venues</li>
<li>Independent, collaborative, and proactive</li>
<li>Comfortable with mentoring junior students</li>
</ul>
<div class="opening-tags">
<span class="opening-tag">Scalable LLM Training</span>
<span class="opening-tag">Formal Reasoning</span>
<span class="opening-tag">Generative Models</span>
</div>
<div class="opening-actions">
<a href="https://forms.gle/YdBwtA1zRQemMZzs8" class="paper-link">Apply via Google form</a>
</div>
</div>
</div>
<!-- Visiting Students / Interns -->
<div class="opening-card">
<div class="opening-content">
<div class="opening-title">Visiting Students / Interns</div>
<div class="opening-venue">6–12 Months</div>
<p class="opening-desc">We host short-term visitors and research interns to collaborate on ongoing projects at SphereLab.</p>
<ul class="opening-list">
<li>Strong coding and communication skills</li>
<li>Prior ML coursework or project experience</li>
<li>Availability to commit sufficient time</li>
</ul>
<div class="opening-tags">
<span class="opening-tag">LLM Reasoning</span>
<span class="opening-tag">ML Systems</span>
<span class="opening-tag">Benchmarks</span>
</div>
<div class="opening-actions">
<a href="https://forms.gle/YdBwtA1zRQemMZzs8" class="paper-link">Apply via Google form</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>