-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup.html
More file actions
561 lines (484 loc) · 16.9 KB
/
group.html
File metadata and controls
561 lines (484 loc) · 16.9 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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo/log_logo.png" type="image/png">
<title>Group | Lee Optimization Group</title>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', system-ui, sans-serif;
color: #111;
background: #ffffff;
min-height: 100vh;
}
.top-rule {
height: 3px;
background: linear-gradient(90deg, #1B3A8A 0%, #3B6FD4 60%, #93A8D8 100%);
}
.scroll-progress {
position: fixed;
top: 3px;
left: 0;
width: 0;
height: 2px;
background: #3B6FD4;
z-index: 1001;
transition: width 0.08s linear;
}
.inner {
max-width: 800px;
margin: 0 auto;
padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 32px) clamp(36px, 5vw, 60px);
}
header {
padding-bottom: 28px;
margin-bottom: 40px;
border-bottom: 1px solid #e2e6f0;
}
.lab-name {
font-family: 'EB Garamond', Georgia, serif;
font-size: 2.8em;
font-weight: 500;
color: #111;
letter-spacing: 0;
line-height: 0.96;
display: block;
margin-bottom: 18px;
text-decoration: none;
}
.lab-name:hover {
text-decoration: none;
color: #111;
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: clamp(10px, 3vw, 24px);
}
nav a {
text-decoration: none;
color: #6b7280;
font-size: 1em;
font-weight: 400;
letter-spacing: 0.01em;
padding-bottom: 2px;
border-bottom: 1.5px dashed transparent;
transition: color 0.15s, border-color 0.15s;
}
nav a:hover {
color: #1B3A8A;
border-bottom: 1.5px solid #1B3A8A;
text-decoration: none;
}
nav a.active {
color: #111;
font-weight: 600;
border-bottom: 1.5px solid #111;
}
.nav-drawer a.active { color: #111; font-weight: 600; }
a { color: #1B3A8A; text-decoration: none; }
a:hover { text-decoration: underline; }
h2 {
font-family: 'Inter', system-ui, sans-serif;
font-size: 1.20em;
font-weight: 700;
letter-spacing: 0.01em;
text-transform: none;
color: #111;
margin-bottom: 24px;
}
h3 {
font-family: 'Inter', system-ui, sans-serif;
font-size: 1.20em;
font-weight: 700;
letter-spacing: 0.01em;
text-transform: none;
color: #111;
margin-top: 40px;
margin-bottom: 14px;
}
p {
font-size: 0.93em;
line-height: 1.75;
color: #374151;
}
/* Member grid */
.member-list {
list-style: none;
padding: 0;
display: grid;
grid-template-columns: repeat(4, 140px);
justify-content: center;
gap: 34px 34px;
}
.member-item {
text-align: center;
}
.member-item img {
width: 140px;
max-width: none;
height: auto;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 6px;
border: 1.5px solid #b8bec8;
margin-bottom: 8px;
}
.member-item span {
display: block;
font-size: 0.88rem;
color: #374151;
}
.member-item .member-position {
font-size: 0.72rem;
color: #6b7280;
margin-top: 2px;
}
.member-item a {
display: block;
font-size: 0.88rem;
color: #1B3A8A;
text-decoration: none;
}
.member-item a:hover { text-decoration: underline; }
@media (max-width: 760px) {
.member-list {
grid-template-columns: repeat(3, 140px);
}
}
@media (max-width: 560px) {
.member-list {
grid-template-columns: repeat(2, 140px);
}
}
@media (max-width: 360px) {
.member-list {
grid-template-columns: repeat(1, 140px);
}
}
/* Gallery preview */
.gallery-preview {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 4px;
margin-top: 14px;
margin-bottom: 10px;
}
.gallery-preview-item {
position: relative;
overflow: hidden;
border: 1.5px solid #b8bec8;
border-radius: 6px;
aspect-ratio: 1;
}
.gallery-preview-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: opacity 0.2s;
}
.gallery-preview-item:hover img { opacity: 1; }
.gallery-preview-item .tooltip {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.65);
color: #fff;
font-size: 0.7em;
text-align: center;
padding: 4px 6px;
opacity: 0;
transition: opacity 0.2s;
pointer-events: none;
}
.gallery-preview-item:hover .tooltip { opacity: 1; }
footer {
margin-top: 52px;
padding-top: 20px;
border-top: 1px solid #e2e6f0;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.75em;
color: #6b7280;
}
.footer-logos {
display: flex;
align-items: center;
gap: 14px;
}
.footer-logos img {
height: 28px;
width: auto;
object-fit: contain;
opacity: 1;
}
.menu-toggle {
display: none;
background: #ffffff;
border: 1px solid #e2e6f0;
border-radius: 6px;
font-size: 1.3em;
cursor: pointer;
color: #374151;
padding: 4px 8px;
line-height: 1;
}
@media (max-width: 900px) {
.inner {
padding: 28px 18px 40px;
}
header {
padding-bottom: 4px;
margin-bottom: 16px;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: start;
column-gap: 10px;
}
.lab-name {
min-width: 0;
}
.menu-toggle {
display: block;
}
nav {
display: none;
}
.footer-logos img {
height: 18px;
}
}
/* Drawer */
.nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.3);
z-index: 999;
}
.nav-drawer {
position: fixed;
top: 0;
right: -280px;
width: 240px;
height: 100vh;
background: #ffffff;
box-shadow: -4px 0 24px rgba(0,0,0,0.12);
z-index: 1000;
transition: right 0.3s ease;
padding: 64px 32px 40px;
display: flex;
flex-direction: column;
gap: 20px;
}
.nav-drawer.open {
right: 0;
}
.nav-overlay.open {
display: block;
}
.drawer-close {
position: absolute;
top: 20px;
right: 20px;
background: none;
border: none;
font-size: 1.4em;
cursor: pointer;
color: #374151;
line-height: 1;
}
.nav-drawer a {
text-decoration: none;
color: #374151;
font-size: 1.05em;
font-weight: 400;
}
.nav-drawer a:hover {
color: #1B3A8A;
}
</style>
</head>
<body>
<div class="top-rule"></div>
<div class="scroll-progress" id="scrollProgress"></div>
<div class="inner">
<header>
<a href="index.html" class="lab-name">Lee Optimization Group</a>
<button class="menu-toggle" aria-label="Menu">☰</button>
<nav>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="group.html" class="active">Members</a>
<a href="hiring.html">Hiring</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<h2>Members</h2>
<ul class="member-list">
<li class="member-item">
<img src="group_profile/namhoonlee.png" alt="Namhoon Lee">
<a href="https://namhoonlee.github.io/">Namhoon Lee</a>
<span class="member-position">Principal Investigator</span>
</li>
<li class="member-item">
<img src="group_profile/damiso.png" alt="Dami So">
<span>Dami So</span>
<span class="member-position">Administrator</span>
</li>
<li class="member-item">
<img src="group_profile/jinseokchung.png" alt="Jinseok Chung">
<span>Jinseok Chung</span>
<span class="member-position">MS/PhD Student</span>
</li>
<li class="member-item">
<img src="group_profile/donghyunoh.jpeg" alt="Donghyun Oh">
<span>Donghyun Oh</span>
<span class="member-position">MS/PhD Student</span>
</li>
<li class="member-item">
<img src="group_profile/sungbinshin.jpg" alt="Sungbin Shin">
<a href="https://ssbin4.github.io">Sungbin Shin</a>
<span class="member-position">MS/PhD Student</span>
</li>
<li class="member-item">
<img src="group_profile/dongyeoplee.jpg" alt="Dongyeop Lee">
<a href="https://dongyeoplee2.github.io">Dongyeop Lee</a>
<span class="member-position">PhD Student</span>
</li>
<li class="member-item">
<img src="group_profile/jihunkim.jpg" alt="Jihun Kim">
<span>Jihun Kim</span>
<span class="member-position">MS/PhD Student</span>
</li>
<li class="member-item">
<img src="group_profile/kwanheelee.jpg" alt="Kwanhee Lee">
<a href="https://kwanhee-lee.github.io">Kwanhee Lee</a>
<span class="member-position">MS Student</span>
</li>
<li class="member-item">
<img src="group_profile/hyunjijung.png" alt="Hyunji Jung">
<a href="https://www.linkedin.com/in/hyunji-jung-1121b5276/?locale=en">Hyunji Jung</a>
<span class="member-position">MS Student</span>
</li>
<li class="member-item">
<img src="group_profile/minkyoungsong.jpg" alt="Minkyung Song">
<a href="https://smk2295.github.io/">Minkyoung Song</a>
<span class="member-position">MS Student</span>
</li>
<li class="member-item">
<img src="group_profile/hyeondojang.jpg" alt="Hyeondo Jang">
<a href="https://kr.linkedin.com/in/hyeondo-jang-83a801217">Hyeondo Jang</a>
<span class="member-position">MS Student</span>
</li>
<li class="member-item">
<img src="group_profile/jiyunpark.jpg" alt="Jiyun Park">
<span>Jiyun Park</span>
<span class="member-position">MS Student</span>
</li>
<li class="member-item">
<img src="group_profile/doyoonkim.jpg" alt="Doyoon Kim">
<a href="https://cosmos1030.github.io/">Doyoon Kim</a>
<span class="member-position">MS Student</span>
</li>
</ul>
<h3>Gallery</h3>
<p>We also spend time together on various occasions. For more stories, check out <a href="gallery.html">here</a>!</p>
<div class="gallery-preview">
<div class="gallery-preview-item">
<a href="stories/26_bowling.png" target="_blank">
<img src="stories/26_bowling.png" alt="Bowling Night">
<span class="tooltip">Bowling Night</span>
</a>
</div>
<div class="gallery-preview-item">
<a href="stories/26_post-icml.jpeg" target="_blank">
<img src="stories/26_post-icml.jpeg" alt="post-ICML 2026">
<span class="tooltip">post-ICML 2026</span>
</a>
</div>
<div class="gallery-preview-item">
<a href="stories/25_yearendparty.png" target="_blank">
<img src="stories/25_yearendparty.png" alt="Year-end Party">
<span class="tooltip">Year-end Party</span>
</a>
</div>
<div class="gallery-preview-item">
<a href="stories/25_boardgame.jpeg" target="_blank">
<img src="stories/25_boardgame.jpeg" alt="Board Game Night">
<span class="tooltip">Board Game Night</span>
</a>
</div>
<div class="gallery-preview-item">
<a href="stories/25_openday.jpg" target="_blank">
<img src="stories/25_openday.jpg" alt="LOG Open Day">
<span class="tooltip">LOG Open Day</span>
</a>
</div>
</div>
<h3>Alumni</h3>
<p>
Dahun Shin (MS 2025);
<a href="https://shpark97.github.io/">Seonghwan Park</a> (MS 2025);
Jaehyeon Jeong (MS 2026)
</p>
</main>
<footer>
<span>© 2026 LOG. All rights reserved.</span>
<div class="footer-logos">
<a href="https://www.postech.ac.kr" target="_blank"><img src="logo/postech_logo.png" alt="POSTECH"></a>
<a href="https://ai.postech.ac.kr" target="_blank"><img src="logo/gsai_logo.png" alt="GSAI"></a>
<a href="https://cse.postech.ac.kr" target="_blank"><img src="logo/cs_logo.png" alt="CS"></a>
<img src="logo/log_logo.png" alt="LOG">
</div>
</footer>
</div>
<div class="nav-overlay" id="navOverlay"></div>
<div class="nav-drawer" id="navDrawer">
<button class="drawer-close" id="drawerClose">✕</button>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="group.html" class="active">Members</a>
<a href="hiring.html">Hiring</a>
<a href="contact.html">Contact</a>
</div>
<script>
var toggle = document.querySelector('.menu-toggle');
var drawer = document.getElementById('navDrawer');
var overlay = document.getElementById('navOverlay');
var close = document.getElementById('drawerClose');
function openDrawer() {
drawer.classList.add('open');
overlay.classList.add('open');
}
function closeDrawer() {
drawer.classList.remove('open');
overlay.classList.remove('open');
}
toggle.addEventListener('click', function() { drawer.classList.contains('open') ? closeDrawer() : openDrawer(); });
close.addEventListener('click', closeDrawer);
overlay.addEventListener('click', closeDrawer);
var scrollProgress = document.getElementById('scrollProgress');
function updateScrollProgress() {
if (!scrollProgress) return;
var scrollTop = window.scrollY || document.documentElement.scrollTop || 0;
var scrollHeight = document.documentElement.scrollHeight - window.innerHeight;
var ratio = scrollHeight > 0 ? (scrollTop / scrollHeight) * 100 : 0;
scrollProgress.style.width = ratio + '%';
}
document.addEventListener('scroll', updateScrollProgress, { passive: true });
window.addEventListener('resize', updateScrollProgress);
updateScrollProgress();
</script>
</body>
</html>