From 977b2999ea68708e95616876e31c9a18a401429d Mon Sep 17 00:00:00 2001 From: "Noah Hanford (spaced)" Date: Wed, 11 Feb 2026 21:43:38 -0500 Subject: [PATCH 1/3] remove x --- _includes/nav.html | 1 - assets/css/main.scss | 9 --------- index.html | 8 -------- 3 files changed, 18 deletions(-) diff --git a/_includes/nav.html b/_includes/nav.html index 029984a..700b884 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -3,7 +3,6 @@

ATTENTION ALUMNI & MEMBERS: The 50th Anniversary will be held from April 10th-12th, 2026!

Find out more at 50th.csh.rit.edu

-
diff --git a/assets/css/main.scss b/assets/css/main.scss index 4c3ce97..cdc584d 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -169,15 +169,6 @@ a.btn { display: inline-block; } -#close-banner { - background: none; - border: none; - font-size: 16px; - cursor: pointer; - margin-left: 10px; - color: #fff; -} - #info-banner a { color: white; text-decoration: underline; diff --git a/index.html b/index.html index 68603dd..bb252e2 100644 --- a/index.html +++ b/index.html @@ -241,11 +241,3 @@

Sponsors

- - - From 6c4960716ebd038ea424f9423ac52f543cdee7b6 Mon Sep 17 00:00:00 2001 From: "Noah Hanford (spaced)" Date: Wed, 11 Feb 2026 21:51:01 -0500 Subject: [PATCH 2/3] moved text down to not collide --- _sass/_splash.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/_splash.scss b/_sass/_splash.scss index 8955f80..8da4da0 100644 --- a/_sass/_splash.scss +++ b/_sass/_splash.scss @@ -12,7 +12,7 @@ $size: 350px; h1 { color: white; font-size: 3em; - margin: 0; + margin: 40px 0 0; padding: 0 1rem; max-width: 100%; word-wrap: break-word; From b6c35bcde7578ba95450b7310b3cfa7291ae9004 Mon Sep 17 00:00:00 2001 From: "Noah Hanford (spaced)" Date: Thu, 12 Feb 2026 11:09:32 -0500 Subject: [PATCH 3/3] added button back and it works on all pages --- _includes/nav.html | 1 + assets/css/main.scss | 26 +++++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/_includes/nav.html b/_includes/nav.html index 700b884..04a61c3 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -3,6 +3,7 @@

ATTENTION ALUMNI & MEMBERS: The 50th Anniversary will be held from April 10th-12th, 2026!

Find out more at 50th.csh.rit.edu

+
diff --git a/assets/css/main.scss b/assets/css/main.scss index cdc584d..046a858 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -159,7 +159,7 @@ a.btn { background-color: #B0197E; color: #fff; text-align: center; - padding: 10px 20px; + padding: 10px 40px; width: 100%; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } @@ -167,6 +167,22 @@ a.btn { #info-banner p { margin: 0; display: inline-block; + + position: relative; +} + +#close-banner { + background: none; + border: none; + font-size: 16px; + cursor: pointer; + margin-left: 10px; + color: #fff; + + + position: fixed; + top: 10px; + right: 20px; } #info-banner a { @@ -178,6 +194,14 @@ a.btn { color: white; } +@media screen and (min-width: 1100px) { + #close-banner { + top: 20px; + right: 30px; + } +} + + @import "typography"; @import "nav"; @import "slider";