Skip to content

Commit 456d4eb

Browse files
committed
feat: First pass of schedule
1 parent 5dceb03 commit 456d4eb

2 files changed

Lines changed: 127 additions & 4 deletions

File tree

public/frosh/2025/index.html

Lines changed: 86 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,93 @@ <h2>Did you know...</h2>
168168
</p>
169169
</aside>
170170

171-
<section id="#schedule">
171+
<section id="schedule">
172172
<div class="section-container">
173-
<h2>When?</h2>
173+
<h2>Schedule</h2>
174174
<div class="section-content">
175-
<p><strong>Monday, September 8 - Saturday, September 13</strong></p>
175+
<p>
176+
Ducky Frosh is happening over 5 days (and one night) from
177+
<strong>Monday, September 8</strong> to <strong>Saturday, September 13</strong>
178+
</p>
179+
<p>
180+
There is something for everyone and even if you can't make all the events, we hope to
181+
see you at as many as you can! Any changes will be announced over
182+
<strong>email</strong> and <strong>announcements on Discord</strong>, so make sure
183+
you've signed up or joined the server.
184+
</p>
185+
<p>Here's a summary of what's to come. Click on an event to learn more.</p>
186+
<div id="calendar">
187+
<div class="bg-box">
188+
<h3>Monday</h3>
189+
<h4>Ice Cream Social</h4>
190+
<div>ASB Atrium & ASB 9702</div>
191+
<time datetime="13:00">1 PM</time> - <time datetime="16:00">4 PM</time>
192+
<p>
193+
A casual kickoff to Frosh Week! Students receive their Ducky Frosh T-shirts, meet
194+
their Frosh leaders, and mingle over complimentary ice cream. This event helps new
195+
students connect and feel welcome.
196+
</p>
197+
</div>
198+
<div class="bg-box">
199+
<h3>Tuesday</h3>
200+
<h4>Burnaby Mountain Park Hike</h4>
201+
<time datetime="12:00">12 PM</time> - <time datetime="15:00">3 PM</time>
202+
<div>SFU Upper Bus Loop</div>
203+
<p>
204+
An adventurous group hike that includes outdoor games, food, and refreshing
205+
drinks. This active outing builds camaraderie and offers a fun, informal way to
206+
enjoy nature and bond with others.
207+
</p>
208+
</div>
209+
<div class="bg-box">
210+
<h3>Wednesday</h3>
211+
<h4>Rest Day</h4>
212+
<p>
213+
You're going to want to take this day to get ready for the upcoming semester and
214+
the next 3 days of Frosh.
215+
</p>
216+
</div>
217+
<div class="bg-box">
218+
<h3>Thursday</h3>
219+
<h4>Info Session</h4>
220+
<time datetime="10:00">10 AM</time> - <time datetime="12:00">12 PM</time>
221+
<div>TBD</div>
222+
<p>
223+
Introduces Froshees to Computing Science concentrations, academic planning, and
224+
the Co-op program. Led by faculty and industry experts.
225+
</p>
226+
<br />
227+
<h4>Pac-Macro</h4>
228+
<time datetime="13:00">1 PM</time> - <time datetime="16:00">4 PM</time>
229+
<div>UniverCity</div>
230+
<p>
231+
A life-sized Pac-Man game using real streets and a CSSS-built tracking software.
232+
Froshees play as Pac-Man or Ghosts in a thrilling, energetic game that combines
233+
tech and fun.
234+
</p>
235+
<br />
236+
<h4>BBQ & Board Games</h4>
237+
<time datetime="17:00">5 PM</time> - <time datetime="21:00">9 PM</time>
238+
<div>TASC-1 9204</div>
239+
<p>
240+
Enjoy delicious burgers made by the CSSS Culinary Team. Followed by a cozy evening
241+
of board games to help Froshees relax and bond.
242+
</p>
243+
</div>
244+
<div class="bg-box">
245+
<h3>
246+
Friday - Saturday <span>7PM - 9AM</span>
247+
<div>TASC 1 9204</div>
248+
</h3>
249+
<h4>Midnight Madnesss</h4>
250+
<p>
251+
Midnight Madness is the grand finale of Ducky Frosh, a 12-hour overnight
252+
extravaganza packed with games, challenges, food, and bonding. Students compete in
253+
activities representing the five Applied Science Schools, and build lasting
254+
memories.
255+
</p>
256+
</div>
257+
</div>
176258
</div>
177259
</div>
178260
</section>
@@ -195,7 +277,7 @@ <h2>Sponsors</h2>
195277
<strong>sponsors</strong>.
196278
</p>
197279
<!-- TODO: Insert sponsorship graphic or link to the PDF. -->
198-
<p>TODO: Sponsorship graphic.</p>
280+
<p><strong>TODO: Sponsorship graphic.</strong></p>
199281
<p>
200282
If you're interested in sponsoring this event, please email
201283
<strong>csss-froshchair@sfu.ca</strong>.

public/frosh/2025/style.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,35 @@ main {
254254
}
255255
}
256256

257+
#calendar {
258+
display: flex;
259+
flex-direction: column;
260+
gap: 1rem;
261+
262+
&>.bg-box {
263+
width: 100%;
264+
padding: 1rem;
265+
266+
& span {
267+
float: right;
268+
}
269+
270+
&>h3 {
271+
color: var(--c-accent);
272+
}
273+
274+
&>h4 {
275+
color: var(--c-strong);
276+
}
277+
278+
&>p {
279+
color: var(--c-tertiary);
280+
font-size: 1rem;
281+
}
282+
}
283+
284+
}
285+
257286
footer {
258287
display: flex;
259288
flex-direction: column;
@@ -309,3 +338,15 @@ footer {
309338
}
310339
}
311340
}
341+
342+
@media (min-width: 570px) {
343+
#calendar {
344+
flex-direction: row;
345+
align-items: flex-start;
346+
flex-wrap: wrap;
347+
348+
&>.bg-box {
349+
flex: 1 1 15rem;
350+
}
351+
}
352+
}

0 commit comments

Comments
 (0)