-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal.html
More file actions
411 lines (357 loc) · 13.9 KB
/
Copy pathpersonal.html
File metadata and controls
411 lines (357 loc) · 13.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal | Sharan Sahu</title>
<meta name="author" content="Sharan Sahu">
<link rel="shortcut icon" href="images/personal_logo.png" type="image/png">
<link
href="https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap"
rel="stylesheet">
<style>
:root {
--bg: #fdfcfa;
--bg-alt: #f7f5f2;
--text: #2d2a26;
--text-secondary: #5c5650;
--text-muted: #8a837a;
--accent: #b45309;
--accent-light: #d97706;
--border: #e8e4de;
--card-bg: #ffffff;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
font-size: 15px;
}
/* Navigation */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(253, 252, 250, 0.92);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
z-index: 100;
padding: 0 24px;
}
.nav-inner {
max-width: 1000px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
}
.nav-logo {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--text);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 32px;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: var(--text-secondary);
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--accent);
}
/* Page header */
.page-header {
padding: 100px 24px 56px;
max-width: 1000px;
margin: 0 auto;
border-bottom: 1px solid var(--border);
}
.page-header h1 {
font-family: 'Crimson Pro', Georgia, serif;
font-size: clamp(2.4rem, 5vw, 3.2rem);
font-weight: 500;
letter-spacing: -0.02em;
line-height: 1.1;
margin-bottom: 16px;
}
.page-header p {
color: var(--text-muted);
font-size: 1rem;
max-width: 640px;
line-height: 1.75;
}
/* Main content */
.personal-page {
max-width: 1000px;
margin: 0 auto;
padding: 64px 24px 100px;
}
.personal-section {
margin-bottom: 64px;
}
.personal-section:last-child {
margin-bottom: 0;
}
.personal-section h2 {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 1.6rem;
font-weight: 500;
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 16px;
color: var(--accent);
}
.personal-section h2::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
.photo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 24px;
}
.photo-card {
display: block;
text-decoration: none;
color: inherit;
}
.photo-card figure {
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
background: var(--bg-alt);
aspect-ratio: 4 / 3;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.photo-card:hover figure {
box-shadow: var(--shadow-md);
transform: translateY(-3px);
}
.photo-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.photo-caption {
margin-top: 10px;
font-size: 0.85rem;
color: var(--text-secondary);
line-height: 1.55;
}
/* Footer */
footer {
padding: 40px 24px;
text-align: center;
border-top: 1px solid var(--border);
margin-top: 40px;
}
footer p {
font-size: 0.85rem;
color: var(--text-muted);
}
footer a {
color: var(--text-muted);
text-decoration: none;
}
footer a:hover {
color: var(--accent);
}
/* Responsive */
@media (max-width: 600px) {
.personal-page {
padding: 48px 16px 80px;
}
.page-header {
padding: 90px 16px 40px;
}
.nav-links {
gap: 20px;
}
.photo-grid {
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 16px;
}
}
/* Animations */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.page-header {
animation: fadeUp 0.6s ease forwards;
}
.personal-section {
opacity: 0;
animation: fadeUp 0.6s ease forwards;
}
.personal-section:nth-child(1) {
animation-delay: 0.1s;
}
.personal-section:nth-child(2) {
animation-delay: 0.2s;
}
.personal-section:nth-child(3) {
animation-delay: 0.3s;
}
.personal-section:nth-child(4) {
animation-delay: 0.4s;
}
.personal-section:nth-child(5) {
animation-delay: 0.5s;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-inner">
<a href="index.html" class="nav-logo">Sharan Sahu</a>
<ul class="nav-links">
<li><a href="index.html#research">Research</a></li>
<li><a href="index.html#talks">Talks</a></li>
<li><a href="personal.html" class="active">Personal</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
</nav>
<!-- Page header -->
<div class="page-header">
<h1>Personal</h1>
<p>A few snapshots from outside of research — grad school, friends, food, and travel.</p>
</div>
<!-- Main content -->
<main class="personal-page">
<!-- Grad School -->
<section class="personal-section">
<h2>Grad School</h2>
<div class="photo-grid">
<a class="photo-card" href="images/IMG_7141.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_7141.jpg" alt="With the Cornell Statistics group at a blackboard" loading="lazy"></figure>
<!-- TODO: confirm names/course -->
<p class="photo-caption">Last class of linear models my first semester of grad school with my cohort and Professor Jim Booth.
</p>
</a>
<a class="photo-card" href="images/IMG_7360.JPG" target="_blank" rel="noopener">
<figure><img src="images/IMG_7360.JPG" alt="At a research conference with colleagues" loading="lazy"></figure>
<!-- TODO: confirm conference name/location -->
<p class="photo-caption">With colleagues at a G-Research event in Nice, France.</p>
</a>
<a class="photo-card" href="images/IMG_2345.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_2345.jpg" alt="At ICML 2026, held at COEX in Seoul" loading="lazy"></figure>
<p class="photo-caption">My first machine learning conference at ICML 2026.</p>
</a>
<a class="photo-card" href="images/IMG_2373.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_2373.jpg" alt="Presenting our poster at ICML 2026" loading="lazy"></figure>
<p class="photo-caption">Presenting our poster at ICML 2026.</p>
</a>
<a class="photo-card" href="images/IMG_2374.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_2374.jpg" alt="Talking through the poster with attendees at ICML 2026" loading="lazy"></figure>
<p class="photo-caption">Talking through the poster with fellow attendees at ICML 2026.</p>
</a>
</div>
</section>
<!-- Friends & Cornell Life -->
<section class="personal-section">
<h2>Friends & Cornell Life</h2>
<div class="photo-grid">
<a class="photo-card" href="images/791A5F76-D6A0-4174-B1A6-F981E337ECBF.jpg" target="_blank" rel="noopener">
<figure><img src="images/791A5F76-D6A0-4174-B1A6-F981E337ECBF.jpg" alt="A night out with friends" loading="lazy"></figure>
<p class="photo-caption">A night out with friends in Ithaca.</p>
</a>
<a class="photo-card" href="images/3bcc7ac3-d003-4061-bbc2-5bc6ea6ebbd0.JPG" target="_blank" rel="noopener">
<figure><img src="images/3bcc7ac3-d003-4061-bbc2-5bc6ea6ebbd0.JPG" alt="Winter evening on the Ithaca Commons" loading="lazy"></figure>
<p class="photo-caption">Winter evening on the Ithaca Commons.</p>
</a>
<a class="photo-card" href="images/IMG_2123.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_2123.jpg" alt="Shooting pool" loading="lazy"></figure>
<p class="photo-caption">Shooting pool during Fall break in Austin, Texas.</p>
</a>
<a class="photo-card" href="images/6415a477-fb5d-441d-85f9-aa2bbff22f35.JPG" target="_blank" rel="noopener">
<figure><img src="images/6415a477-fb5d-441d-85f9-aa2bbff22f35.JPG" alt="Carrom night with friends" loading="lazy"></figure>
<p class="photo-caption">Carrom night with friends.</p>
</a>
</div>
</section>
<!-- Food Festivals -->
<section class="personal-section">
<h2>Food Festivals</h2>
<div class="photo-grid">
<a class="photo-card" href="images/IMG_5673.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_5673.jpg" alt="Sampling food at a local festival" loading="lazy"></figure>
<p class="photo-caption">Enjoying some food at a local food festival.</p>
</a>
<a class="photo-card" href="images/IMG_6886.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_6886.jpg" alt="Food trucks in downtown Ithaca" loading="lazy"></figure>
<p class="photo-caption">Enjoying some lemonade in Syracuse.</p>
</a>
</div>
</section>
<!-- Travel -->
<section class="personal-section">
<h2>Travel</h2>
<div class="photo-grid">
<a class="photo-card" href="images/IMG_7525.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_7525.jpg" alt="By the moat at Osaka Castle, Japan" loading="lazy"></figure>
<p class="photo-caption">By the moat at Osaka Castle, Japan enjoying a famous 10-yen coin cheese bread.</p>
</a>
<a class="photo-card" href="images/IMG_8459.jpg" target="_blank" rel="noopener">
<figure><img src="images/IMG_8459.jpg" alt="Under a sculpture in Gangnam, Seoul" loading="lazy"></figure>
<p class="photo-caption">Near the giant sculpture in Gangnam, Seoul.</p>
</a>
</div>
</section>
<!-- Graduation -->
<section class="personal-section">
<h2>Graduation</h2>
<div class="photo-grid">
<a class="photo-card" href="images/SunnySahuGraduation.jpg" target="_blank" rel="noopener">
<figure><img src="images/SunnySahuGraduation.jpg" alt="Undergraduate Commencement at UC Berkeley" loading="lazy"></figure>
<p class="photo-caption">Undergraduate Commencement at UC Berkeley.</p>
</a>
<a class="photo-card" href="images/IMG_0200.JPG" target="_blank" rel="noopener">
<figure><img src="images/IMG_0200.JPG" alt="With friends at UC Berkeley Commencement" loading="lazy"></figure>
<p class="photo-caption">With friends at UC Berkeley Commencement.</p>
</a>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<p>Template inspired by <a href="https://github.com/jonbarron/jonbarron_website">Jon Barron</a></p>
</footer>
</body>
</html>