Skip to content

Commit

Permalink
Fix home page & nav bar again, I don't know why they keep on breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
99TheDark committed Dec 20, 2023
1 parent f28885e commit cd345da
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion global/generic/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ img {
}
}

@media (max-width: 600px) {
@media (max-width: 700px) {
#logo-big {
display: none;
}
Expand Down
20 changes: 7 additions & 13 deletions home/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
}
}

@media (max-width: 900px) {
@media (max-width: 975px) {
#main {
flex-direction: column;
font-size: 1.8rem;
Expand All @@ -100,22 +100,12 @@
max-width: 70rem;
}

#definition {
width: 60rem;
}

.social {
font-size: min(8rem, 40px);
}
}

@media (max-width: 600px) {
#renegade {
font-size: 11vw;
font-size: max(10vw, 50px);
}

#definition {
font-size: 3.5vw;
font-size: max(3vw, 16px);
width: fit-content;
}

Expand All @@ -125,4 +115,8 @@
padding-left: 50px;
padding-right: 50px;
}

.social {
font-size: min(8rem, 40px);
}
}
11 changes: 11 additions & 0 deletions programs/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,15 @@ tr:last-child > td:last-child {

tr:nth-child(odd) {
background-color: var(--l);
}

@media (max-width: 775px) {
#programs {
margin: 3rem 6rem 4rem 6rem;
}

#day {
margin-left: 8rem;
margin-right: 8rem;
}
}

0 comments on commit cd345da

Please sign in to comment.