Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ build/
node_modules/
public/static/css/tailwind.css
.DS_Store
dist/
.angular
Binary file added public/frosh/2025/images/hero-mountain.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/frosh/2025/images/mountains.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24,373 changes: 24,373 additions & 0 deletions public/frosh/2025/images/mountains.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22,945 changes: 22,945 additions & 0 deletions public/frosh/2025/images/mountains_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/frosh/2025/images/reeds-width.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
289 changes: 289 additions & 0 deletions public/frosh/2025/images/reeds-width.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
456 changes: 456 additions & 0 deletions public/frosh/2025/index.html

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions public/frosh/2025/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
function reedsParting() {
const scrollTrigger = {
trigger: '.hero',
start: 'top top',
end: 'bottom top',
toggleActions: 'play none reverse none',
scrub: true
};

gsap.to('.reeds > .left', {
x: '-100vw',
scrollTrigger
});

gsap.to('.reeds > .right', {
x: '100vw',
scrollTrigger
});
}

window.addEventListener('load', _ => {
gsap.registerPlugin(ScrollTrigger, ScrollSmoother);
reedsParting();
});
64 changes: 64 additions & 0 deletions public/frosh/2025/reset.min.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
*,
*::before,
*::after {
box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
margin: 0;
}

ul[role='list'],
ol[role='list'] {
list-style: none;
}

html:focus-within {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
text-rendering: optimizeSpeed;
line-height: 1.5;
}

a:not([class]) {
text-decoration-skip-ink: auto;
}

img,
picture {
max-width: 100%;
display: block;
}

input,
textarea,
select {
font: inherit;
}

@media (prefers-reduced-motion: reduce) {
html:focus-within {
scroll-behavior: auto;
}

*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
Loading