-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathipl.html
More file actions
383 lines (362 loc) · 10.7 KB
/
ipl.html
File metadata and controls
383 lines (362 loc) · 10.7 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
---
layout: null
permalink: /ipl/
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IPL 2026 — Illinois Programming League</title>
<meta name="description" content="Illinois Programming League 2026. A competitive programming contest at UIUC, open to all skill levels. April 25, 2026." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@700&display=swap" rel="stylesheet" />
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', system-ui, sans-serif;
color: #1a1a2e;
background: #fff;
}
/* ── Register bar ── */
.topbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 50;
background: #13294b;
color: #fff;
display: flex; justify-content: space-between; align-items: center;
padding: 0.75rem 2rem;
font-size: 0.9rem;
}
.topbar a {
color: #ff6f3c;
font-weight: 700;
text-decoration: none;
}
.topbar a:hover { text-decoration: underline; }
.topbar .logo-img { height: 28px; vertical-align: middle; margin-right: 0.5rem; }
.topbar-left { display: flex; align-items: center; }
/* ── Hero ── */
.hero {
min-height: 100vh;
display: flex; flex-direction: column; justify-content: center; align-items: center;
text-align: center;
padding: 7rem 2rem 4rem;
background: #13294b;
color: #fff;
position: relative;
}
.hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(2.8rem, 7vw, 5.5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero h1 .accent { color: #ff6f3c; }
.hero p {
font-size: 1.2rem;
max-width: 520px;
line-height: 1.6;
opacity: 0.85;
margin-bottom: 0.75rem;
}
.hero .date {
font-weight: 700;
font-size: 1.3rem;
color: #ff6f3c;
opacity: 1;
margin-bottom: 2.5rem;
}
.register-btn {
display: inline-block;
background: #ff6f3c;
color: #fff;
font-size: 1.15rem;
font-weight: 700;
padding: 1rem 3rem;
border-radius: 8px;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
}
.register-btn:hover {
background: #e85d2c;
transform: translateY(-2px);
}
/* ── Shared section ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 2rem;
margin-bottom: 1.5rem;
}
/* ── About + Poster ── */
.about {
background: #f7f7fb;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}
.about-text p {
font-size: 1.05rem;
line-height: 1.8;
color: #444;
margin-bottom: 1rem;
}
.poster {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.poster img {
width: 100%;
display: block;
}
/* ── Highlights ── */
.highlights { background: #fff; }
.highlights-list {
list-style: none;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
}
.highlights-list li {
background: #f7f7fb;
border-radius: 10px;
padding: 1.5rem;
font-size: 1rem;
line-height: 1.5;
color: #333;
}
.highlights-list li strong {
display: block;
color: #13294b;
margin-bottom: 0.25rem;
font-size: 1.05rem;
}
/* ── Sponsors ── */
.sponsors {
background: linear-gradient(135deg, #e8eaf0 0%, #d5d9e2 50%, #e2e4ea 100%);
padding: 2.5rem 2rem;
text-align: center;
}
.sponsors .section-inner { display: flex; flex-direction: column; align-items: center; }
.sponsors h2 { margin-bottom: 1rem; }
.sponsor-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 2.5rem;
}
.sponsor-row img {
height: 44px;
object-fit: contain;
opacity: 0.7;
transition: opacity 0.2s;
}
.sponsor-row img:hover { opacity: 1; }
/* ── Schedule ── */
.schedule { background: #f7f7fb; text-align: center; }
.schedule-location {
color: #666;
font-size: 1.05rem;
margin-bottom: 2rem;
}
.schedule-timeline {
display: flex;
flex-direction: column;
gap: 0;
max-width: 520px;
margin: 0 auto;
text-align: left;
}
.schedule-item {
display: flex;
align-items: stretch;
min-height: 52px;
}
.schedule-time {
flex: 0 0 130px;
font-weight: 700;
color: #13294b;
font-size: 0.95rem;
padding: 0.75rem 1rem 0.75rem 0;
text-align: right;
border-right: 3px solid #ff6f3c;
position: relative;
}
.schedule-time::after {
content: '';
position: absolute;
right: -7px;
top: 50%;
transform: translateY(-50%);
width: 11px;
height: 11px;
background: #ff6f3c;
border-radius: 50%;
}
.schedule-event {
flex: 1;
padding: 0.75rem 0 0.75rem 1.5rem;
font-size: 1rem;
color: #333;
}
.schedule-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #fff;
background: #13294b;
padding: 0.15rem 0.5rem;
border-radius: 4px;
display: inline-block;
margin-top: 0.15rem;
}
/* ── Discord ── */
.discord {
background: #fff;
text-align: center;
}
.discord p {
color: #555;
font-size: 1.05rem;
line-height: 1.7;
max-width: 560px;
margin: 0 auto 1.5rem;
}
.discord-btn {
display: inline-block;
background: #5865F2;
color: #fff;
font-size: 1.1rem;
font-weight: 700;
padding: 0.85rem 2.5rem;
border-radius: 8px;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
}
.discord-btn:hover {
background: #4752c4;
transform: translateY(-2px);
}
/* ── Footer ── */
footer {
background: #13294b;
color: rgba(255,255,255,0.5);
text-align: center;
padding: 2rem;
font-size: 0.85rem;
}
footer a { color: #ff6f3c; text-decoration: none; }
/* ── Mobile ── */
@media (max-width: 700px) {
.about-grid { grid-template-columns: 1fr; }
.highlights-list { grid-template-columns: 1fr; }
.section { padding: 3.5rem 1.25rem; }
}
</style>
</head>
<body>
<!-- Sticky register bar -->
<div class="topbar">
<div class="topbar-left"><img src="/assets/images/ipl-logo.png" alt="IPL Logo" class="logo-img" /><span>Illinois Programming League 2026</span></div>
</div>
<!-- Hero -->
<section class="hero">
<h1>Illinois Programming<br/><span class="accent">League</span> 2026</h1>
<p>A programming contest hosted by ACM-ICPC at UIUC. All skill levels are welcome!</p>
<p class="date">April 25, 2026 @ UIUC</p>
<a href="https://forms.gle/bfeLxDxJrYakWyF17" class="register-btn">Register</a>
</section>
<!-- About + Poster -->
<section class="section about" id="about">
<div class="section-inner">
<div class="about-grid">
<div class="about-text">
<h2>About the Contest</h2>
<p>
IPL is a team-based programming competition — groups of up to three share a single
computer to tackle algorithmic challenges. We offer two divisions: one geared toward
newcomers and another for seasoned competitive programmers.
<p>
Compete for prizes, grab free food and merch, and if your team is the first to solve
a problem you'll take home a plushie!
</p>
<p>
IPL will feature 2 divisions: one for beginners and one for experienced competitors.
The beginner division (reccommended for anyone with no/little competitive programming experience)
will have mentors who will give hints and answer problems that teams have during the contest.
</p>
</div>
<div class="poster">
<img src="/assets/images/ipl-flyer.png" alt="IPL 2026 Poster" />
</div>
</div>
</div>
</section>
<!-- Discord -->
<section class="section discord" id="discord">
<div class="section-inner">
<h2>Join the Discord</h2>
<p>You must be in our Discord server to compete. All contest announcements, team coordination, and live updates will happen there.</p>
<a href="https://discord.gg/eWcbBd7Vcf" class="discord-btn">Join Discord</a>
</div>
</section>
<!-- Schedule -->
<section class="section schedule" id="schedule">
<div class="section-inner">
<h2>Schedule</h2>
<p class="schedule-location">Main Room @ CIF 3039 </p>
<div class="schedule-timeline">
<div class="schedule-item">
<div class="schedule-time">10:00 – 11:00</div>
<div class="schedule-event">Check-in</div>
</div>
<div class="schedule-item">
<div class="schedule-time">11:00 – 11:45</div>
<div class="schedule-event">Opening Ceremony</div>
</div>
<div class="schedule-item">
<div class="schedule-time">11:45 – 12:30</div>
<div class="schedule-event">Lunch</div>
</div>
<div class="schedule-item">
<div class="schedule-time">12:30 – 1:00</div>
<div class="schedule-event">Practice Contest</div>
</div>
<div class="schedule-item">
<div class="schedule-time">1:00 – 5:00</div>
<div class="schedule-event">Main Contest <span class="schedule-label">Competition</span></div>
</div>
<div class="schedule-item">
<div class="schedule-time">5:30 – End</div>
<div class="schedule-event">Dinner & Awards</div>
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<section class="section sponsors" id="sponsors">
<div class="section-inner">
<h2>Sponsors</h2>
<div class="sponsor-row">
<img src="/assets/images/sponsors/logo-purple.png" alt="CTC" />
<img src="/assets/images/sponsors/HRT_Primary_Logo_-_Full_Color.png" alt="HRT" />
<img src="/assets/images/sponsors/mathworks.png" alt="MathWorks" />
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p><a href="https://icpc.cs.illinois.edu">SIG ICPC @ UIUC</a> · <a href="https://discord.gg/eWcbBd7Vcf">Discord</a></p>
</footer>
</body>
</html>