Skip to content

Commit

Permalink
Add the Past Projects section
Browse files Browse the repository at this point in the history
  • Loading branch information
cszach committed Oct 20, 2023
1 parent 636723f commit c890b56
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 20 deletions.
37 changes: 34 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ <h3 class="mb-4 text-2xl text-center font-display">Emerging Tech</h3>
</div>
</div>
</div>
<div id="particles-js" class="relative px-5 bg-deep-purple">
<div class="flex flex-col items-center justify-center pt-16 gap-10 bg-deep-purple">
<div id="particles-js" class="relative flex flex-col items-center px-5 bg-deep-purple">
<div class="flex flex-col items-center justify-center py-16 gap-10 bg-deep-purple">
<h2 class="text-5xl">
<div id="prizes" class="absolute -top-20"></div>
Prizes
Expand All @@ -143,7 +143,38 @@ <h2 class="text-5xl">
<div class="hover-scale pointer-events-auto flex items-center h-28 p-8 bg-no-repeat bg-contain w-72 md:w-80 lg:w-96 grow-0 rounded-2xl bg-prize-amazon-fire-stick bg-violet bg-[bottom_-16px_right_0px]"><h3>Amazon Fire Stick</h3></div>
</div>
</div>
<div class="flex flex-col items-center py-24 box-border gap-12 lg:gap-20">
<div class="flex flex-col grow-0 items-center w-full gap-7 lg:gap-11 px-9 lg:px-0 lg:w-[999px] box-border text-base lg:text-xl">
<h2 class="text-5xl text-center">
<div id="past-projects" class="absolute -top-20"></div>
Past projects
</h2>
<div class="flex flex-row flex-wrap justify-center pt-5 pb-12 lg:pt-1 gap-12">
<a href="https://devpost.com/software/goodsoup" target="_blank" class="w-[298px] h-[448px] rounded-3xl bg-violet hover-scale overflow-hidden">
<img class="w-full mx-auto mb-9" src="img/projects/goodsoup.png" />
<h3 class="mb-4 text-2xl text-center font-display">GoodSoup</h3>
<p class="px-6 text-center">
The dining hall recipe allergen analysis.
</p>
</a>
<a href="https://devpost.com/software/project-eleos" target="_blank" class="w-[298px] h-[448px] rounded-3xl bg-violet hover-scale overflow-hidden">
<img class="w-full mx-auto mb-9" src="img/projects/project-eleos.png" />
<h3 class="mb-4 text-2xl text-center font-display">Project Eleos</h3>
<p class="px-6 text-center">
Project Eleos is our attempt at solving the issue of computational
power and its availability to the average person.
</p>
</a>
<a href="https://devpost.com/software/2-tris" target="_blank" class="w-[298px] h-[448px] rounded-3xl bg-violet hover-scale overflow-hidden">
<img class="w-full mx-auto mb-9" src="img/projects/2-tris.jpg" />
<h3 class="mb-4 text-2xl text-center font-display">2-Tris</h3>
<p class="px-6 text-center">
A 2d co-op shooter version of Tetris featuring 3 classically
composed pieces.
</p>
</a>
</div>
</div>
<div class="flex flex-col items-center pb-24 pt-11 box-border gap-12 lg:gap-20">
<h2 class="text-5xl">
<div id="faq" class="absolute -top-20"></div>
FAQS
Expand Down
46 changes: 29 additions & 17 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,10 @@ h1, h2, h3, h4, h5, h6 {
margin-top: 0.5rem;
}

.mb-9 {
margin-bottom: 2.25rem;
}

.box-border {
box-sizing: border-box;
}
Expand Down Expand Up @@ -2171,11 +2175,6 @@ h1, h2, h3, h4, h5, h6 {
padding-right: 2.25rem;
}

.py-12 {
padding-top: 3rem;
padding-bottom: 3rem;
}

.py-24 {
padding-top: 6rem;
padding-bottom: 6rem;
Expand All @@ -2191,6 +2190,15 @@ h1, h2, h3, h4, h5, h6 {
padding-bottom: 1.25rem;
}

.py-16 {
padding-top: 4rem;
padding-bottom: 4rem;
}

.pb-12 {
padding-bottom: 3rem;
}

.pb-7 {
padding-bottom: 1.75rem;
}
Expand All @@ -2203,14 +2211,26 @@ h1, h2, h3, h4, h5, h6 {
padding-top: 8rem;
}

.pb-12 {
padding-bottom: 3rem;
}

.pt-5 {
padding-top: 1.25rem;
}

.pb-24 {
padding-bottom: 6rem;
}

.pt-20 {
padding-top: 5rem;
}

.pt-11 {
padding-top: 2.75rem;
}

.pt-4 {
padding-top: 1rem;
}

.text-left {
text-align: left;
}
Expand Down Expand Up @@ -3101,10 +3121,6 @@ canvas {
gap: 5rem;
}

.lg\:self-start {
align-self: flex-start;
}

.lg\:bg-groundboi {
background-image: url('img/sticker2-no_border.png');
}
Expand Down Expand Up @@ -3190,10 +3206,6 @@ canvas {
}

@media (min-width: 1280px) {
.xl\:relative {
position: relative;
}

.xl\:block {
display: block;
}
Expand Down

0 comments on commit c890b56

Please sign in to comment.