Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some minor finickies while we are at it! #44

Merged
merged 1 commit into from
Oct 19, 2023
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
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2 class="text-2xl lg:text-4xl text-purple">November 3-5</h2>
</div>
</div>
<div class="flex flex-row items-center justify-center gap-[77px] relative">
<img class="hidden hover-scale lg:self-start lg:block" src="img/sticker2.png" />
<img class="hidden hover-scale xl:self-start xl:block" src="img/sticker2.png" />
<div class="px-9 lg:px-0 lg:flex-[0_0_454px] flex flex-col gap-7 lg:gap-14 mb-16 lg:mb-[150px]">
<h2 class="text-2xl lg:text-5xl">
<div id="about" class="absolute -top-20"></div>
Expand Down Expand Up @@ -98,7 +98,7 @@ <h2 class="text-5xl">
track will have different prizes, so pick and choose your track
depending on which prize you want to win!
</p>
<div class="flex flex-col p-12 lg:flex-row gap-12">
<div class="flex flex-row flex-wrap justify-center pt-5 pb-12 lg:pt-1 gap-12">
<div class="w-[298px] h-[448px] rounded-3xl bg-deep-purple p-6 hover-scale">
<img class="w-40 mx-auto my-9" src="img/tracks/entertainment.svg" alt="A window with a video player" />
<h3 class="mb-4 text-2xl text-center font-display">Entertainment</h3>
Expand Down
31 changes: 31 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2171,6 +2171,11 @@ 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 Down Expand Up @@ -2198,6 +2203,14 @@ h1, h2, h3, h4, h5, h6 {
padding-top: 8rem;
}

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

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

.text-left {
text-align: left;
}
Expand Down Expand Up @@ -3138,6 +3151,10 @@ canvas {
padding-bottom: 1.25rem;
}

.lg\:pt-1 {
padding-top: 0.25rem;
}

.lg\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
Expand Down Expand Up @@ -3172,6 +3189,20 @@ canvas {
}
}

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

.xl\:block {
display: block;
}

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

@media (min-width: 768px) {
@media not all and (min-width: 1024px) {
@media (orientation: portrait) {
Expand Down