From 2721f3bc543b7b31851db541de841a5837a793fe Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Thu, 27 Mar 2025 16:24:37 -0500 Subject: [PATCH 01/10] Update year in footer --- public/scripts/footer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/footer.js b/public/scripts/footer.js index d702d6b..7ab0a89 100644 --- a/public/scripts/footer.js +++ b/public/scripts/footer.js @@ -2,7 +2,7 @@ var foot = document.createElement("footer"); foot.innerHTML = `This website uses Bookie0's BounceCSS for styling. ${location.pathname !== "/"? '
Return to index': ''}
-Website © 2023 Firepup650 +Website © 2025 Firepup650 `; document.querySelector("body").append(foot); console.debug("Footer Script done.") From 4a8dfd11ce8d37df975c16e5a12e50d664b437ec Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Thu, 27 Mar 2025 17:01:23 -0500 Subject: [PATCH 02/10] #aabbcc -> #abc --- public/styles/style.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/public/styles/style.css b/public/styles/style.css index 6fcb8f0..c156048 100644 --- a/public/styles/style.css +++ b/public/styles/style.css @@ -8,24 +8,24 @@ * { color-scheme: light dark; font-family: 'Source Code Pro', monospace !important; - color: #00FF00; + color: #0F0; } html, body { height: 100%; width: 100%; - color: #00FF00; + color: #0F0; margin: 0; padding: 0; font-family: 'Source Code Pro', monospace !important; } html { - background-color: #000000; + background-color: #000; } .warning { - color: #FF0000; + color: #F00; } body { @@ -52,7 +52,7 @@ a:has(button) { box-shadow: none; transform: none; outline: none; - background: #000000; + background: #000; } .center { @@ -71,7 +71,7 @@ a:has(button) { /* .rainbow { - background: linear-gradient(90.02deg, #ff0000 0.02%, #e100ff 27.09%, #00b3ff 51.04%, #00ff1e 76.56%, #ff0000 99.99%); + background: linear-gradient(90.02deg, #F00 0.02%, #E0F 27.09%, #0BF 51.04%, #0F1 76.56%, #F00 99.99%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; @@ -80,7 +80,7 @@ a:has(button) { */ .rainbow { - background: linear-gradient(to right, #ff0000 0%, #e100ff 10%, #00b3ff 30%, #00ff1e 50%, #ff0000 90%); + background: linear-gradient(to right, #F00 0%, #E0F 10%, #0BF 30%, #0F1 50%, #F00 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; @@ -88,11 +88,11 @@ a:has(button) { } .color { - color: #00FF00; + color: #0F0; } .force-color { - background: #00ff00; + background: #0F0; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; @@ -107,7 +107,7 @@ a:has(button) { } pre { - background: #111111; + background: #111; width: 100%; max-width: 100%; min-width: 100%; From 98e8a7ad14e38de580c747bb14f1c326367bcd74 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Thu, 27 Mar 2025 17:06:45 -0500 Subject: [PATCH 03/10] Use CSS vars --- public/styles/style.css | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/public/styles/style.css b/public/styles/style.css index c156048..da46939 100644 --- a/public/styles/style.css +++ b/public/styles/style.css @@ -1,5 +1,13 @@ /* @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap'); */ +:root { + --fp-primary: #0F0; + --fp-background: #000; + --fp-secondary: #0FF; + --fp-danger: #F00; + --fp-dim: #111; +} + @font-face { font-family: 'Source Code Pro'; src: url('/fonts/SourceCodePro.ttf'); @@ -8,24 +16,24 @@ * { color-scheme: light dark; font-family: 'Source Code Pro', monospace !important; - color: #0F0; + color: var(--fp-primary); } html, body { height: 100%; width: 100%; - color: #0F0; + color: var(--fp-primary); margin: 0; padding: 0; font-family: 'Source Code Pro', monospace !important; } html { - background-color: #000; + background-color: var(--fp-background); } .warning { - color: #F00; + color: var(--fp-danger); } body { @@ -52,7 +60,7 @@ a:has(button) { box-shadow: none; transform: none; outline: none; - background: #000; + background: var(--fp-background); } .center { @@ -69,16 +77,6 @@ a:has(button) { text-align: right; } -/* -.rainbow { - background: linear-gradient(90.02deg, #F00 0.02%, #E0F 27.09%, #0BF 51.04%, #0F1 76.56%, #F00 99.99%); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; - text-fill-color: transparent; -} -*/ - .rainbow { background: linear-gradient(to right, #F00 0%, #E0F 10%, #0BF 30%, #0F1 50%, #F00 90%); -webkit-background-clip: text; @@ -88,11 +86,11 @@ a:has(button) { } .color { - color: #0F0; + color: var(--fp-primary); } .force-color { - background: #0F0; + background: var(--fp-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; @@ -107,7 +105,7 @@ a:has(button) { } pre { - background: #111; + background: var(--fp-dim); width: 100%; max-width: 100%; min-width: 100%; @@ -115,7 +113,6 @@ pre { code { overflow-x: auto; - max-width: 100%; display: block; margin: 0ch 1ch; } From 5554deea80edb1a948a67b8179a68f27dc7993e6 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Thu, 27 Mar 2025 17:26:57 -0500 Subject: [PATCH 04/10] Fix css order --- public/dynamic/about-you.ejs | 2 +- public/dynamic/raw.ejs | 2 +- public/dynamic/server-info.ejs | 2 +- public/dynamic/spotify-history.ejs | 2 +- public/dynamic/spotify-queue.ejs | 2 +- public/dynamic/spotify.ejs | 2 +- public/errors/403.ejs | 2 +- public/errors/404.ejs | 2 +- public/errors/422.ejs | 2 +- public/errors/500.ejs | 2 +- public/errors/502.html | 2 +- public/pages/calculator.html | 2 +- public/pages/cheese.html | 2 +- public/pages/code-of-hexics.html | 2 +- public/pages/construction.html | 2 +- public/pages/dvd-screensaver.html | 2 +- public/pages/error-debug.html | 2 +- public/pages/forbidden.html | 2 +- public/pages/hidden.html | 2 +- public/pages/hunt.html | 2 +- public/pages/index.html | 2 +- public/pages/maintenance.html | 2 +- public/pages/modpack.html | 2 +- public/pages/music.html | 2 +- public/pages/neofetches.html | 2 +- public/pages/password-generator.html | 2 +- public/pages/pfps.html | 2 +- public/pages/quotes.html | 2 +- public/pages/ratings.html | 2 +- public/pages/ratings/9pfs.html | 2 +- public/pages/ratings/bigminiboss.html | 2 +- public/pages/ratings/coderelijah.html | 2 +- public/pages/ratings/jayayseaohbee14.html | 2 +- public/pages/ratings/pikachub2005.html | 2 +- public/pages/ratings/youngchief.html | 2 +- public/pages/services.html | 2 +- public/pages/test-loader.html | 2 +- public/pages/test-tags.html | 2 +- public/pages/usage.html | 2 +- public/pages/users.html | 2 +- public/pages/users/9pfs.html | 2 +- public/pages/users/bigminiboss.html | 2 +- public/pages/users/coderelijah.html | 2 +- public/pages/users/jayayseaohbee14.html | 2 +- public/pages/users/pikachub2005.html | 2 +- public/pages/users/snakebyte.html | 2 +- public/pages/users/youngchief.html | 2 +- public/pages/visits.html | 2 +- public/styles/style.css | 10 ++++++++-- 49 files changed, 56 insertions(+), 50 deletions(-) diff --git a/public/dynamic/about-you.ejs b/public/dynamic/about-you.ejs index 8e59e4c..dc4ce8b 100644 --- a/public/dynamic/about-you.ejs +++ b/public/dynamic/about-you.ejs @@ -4,8 +4,8 @@ FP650 - About You - + diff --git a/public/dynamic/raw.ejs b/public/dynamic/raw.ejs index 0f8488b..e324c6c 100644 --- a/public/dynamic/raw.ejs +++ b/public/dynamic/raw.ejs @@ -4,8 +4,8 @@ FP650 - Raw - <%= fileName %> - + diff --git a/public/dynamic/server-info.ejs b/public/dynamic/server-info.ejs index 662e90c..867b594 100644 --- a/public/dynamic/server-info.ejs +++ b/public/dynamic/server-info.ejs @@ -2,9 +2,9 @@ FP650 - Server Info - + diff --git a/public/dynamic/spotify-history.ejs b/public/dynamic/spotify-history.ejs index b499f73..85946a5 100644 --- a/public/dynamic/spotify-history.ejs +++ b/public/dynamic/spotify-history.ejs @@ -2,9 +2,9 @@ FP650 - YCS - History - + diff --git a/public/dynamic/spotify-queue.ejs b/public/dynamic/spotify-queue.ejs index 5db42d4..02dbff8 100644 --- a/public/dynamic/spotify-queue.ejs +++ b/public/dynamic/spotify-queue.ejs @@ -2,9 +2,9 @@ FP650 - YCS - Queue - + diff --git a/public/dynamic/spotify.ejs b/public/dynamic/spotify.ejs index e50a3fd..fef223c 100644 --- a/public/dynamic/spotify.ejs +++ b/public/dynamic/spotify.ejs @@ -2,9 +2,9 @@ FP650 - Youngchief's Spotify - + diff --git a/public/errors/403.ejs b/public/errors/403.ejs index eefbb0e..955c51f 100644 --- a/public/errors/403.ejs +++ b/public/errors/403.ejs @@ -4,8 +4,8 @@ FP650 - 403 Error - + diff --git a/public/errors/404.ejs b/public/errors/404.ejs index 2a62d03..10c55d9 100644 --- a/public/errors/404.ejs +++ b/public/errors/404.ejs @@ -4,8 +4,8 @@ FP650 - 404 Error - + diff --git a/public/errors/422.ejs b/public/errors/422.ejs index 939fad0..b0d3568 100644 --- a/public/errors/422.ejs +++ b/public/errors/422.ejs @@ -4,8 +4,8 @@ FP650 - 422 Error - + diff --git a/public/errors/500.ejs b/public/errors/500.ejs index 8b892f2..fe7daf7 100644 --- a/public/errors/500.ejs +++ b/public/errors/500.ejs @@ -4,8 +4,8 @@ FP650 - 500 Error - + diff --git a/public/errors/502.html b/public/errors/502.html index 84ad0ca..90b47d9 100644 --- a/public/errors/502.html +++ b/public/errors/502.html @@ -4,8 +4,8 @@ FP650 - 502 Error - + diff --git a/public/pages/calculator.html b/public/pages/calculator.html index 31f5d33..7280453 100644 --- a/public/pages/calculator.html +++ b/public/pages/calculator.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/cheese.html b/public/pages/cheese.html index ee828d1..431c2c7 100644 --- a/public/pages/cheese.html +++ b/public/pages/cheese.html @@ -15,8 +15,8 @@ - +
diff --git a/public/pages/code-of-hexics.html b/public/pages/code-of-hexics.html index 4ee02b3..b892530 100644 --- a/public/pages/code-of-hexics.html +++ b/public/pages/code-of-hexics.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/construction.html b/public/pages/construction.html index 6e69276..61f33c3 100644 --- a/public/pages/construction.html +++ b/public/pages/construction.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/dvd-screensaver.html b/public/pages/dvd-screensaver.html index bb826ac..c56f697 100644 --- a/public/pages/dvd-screensaver.html +++ b/public/pages/dvd-screensaver.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/error-debug.html b/public/pages/error-debug.html index 677b35b..156054a 100644 --- a/public/pages/error-debug.html +++ b/public/pages/error-debug.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/forbidden.html b/public/pages/forbidden.html index dbd7b65..72fcef0 100644 --- a/public/pages/forbidden.html +++ b/public/pages/forbidden.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/hidden.html b/public/pages/hidden.html index b8b4c7f..48220ae 100644 --- a/public/pages/hidden.html +++ b/public/pages/hidden.html @@ -15,8 +15,8 @@ - +
diff --git a/public/pages/hunt.html b/public/pages/hunt.html index dfc2b87..e5b6bec 100644 --- a/public/pages/hunt.html +++ b/public/pages/hunt.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/index.html b/public/pages/index.html index 7104fa5..ae4ffe1 100644 --- a/public/pages/index.html +++ b/public/pages/index.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/maintenance.html b/public/pages/maintenance.html index ea18eb2..79258c7 100644 --- a/public/pages/maintenance.html +++ b/public/pages/maintenance.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/modpack.html b/public/pages/modpack.html index 4a0ddfa..8b455c3 100644 --- a/public/pages/modpack.html +++ b/public/pages/modpack.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/music.html b/public/pages/music.html index 1b900ab..23aa7f1 100644 --- a/public/pages/music.html +++ b/public/pages/music.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/neofetches.html b/public/pages/neofetches.html index fd1a449..5e1086e 100644 --- a/public/pages/neofetches.html +++ b/public/pages/neofetches.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/password-generator.html b/public/pages/password-generator.html index 1791f20..9d320bc 100644 --- a/public/pages/password-generator.html +++ b/public/pages/password-generator.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/pfps.html b/public/pages/pfps.html index 92cc80e..4a95002 100644 --- a/public/pages/pfps.html +++ b/public/pages/pfps.html @@ -15,8 +15,8 @@ - +
diff --git a/public/pages/quotes.html b/public/pages/quotes.html index 9d8ad1d..da68eba 100644 --- a/public/pages/quotes.html +++ b/public/pages/quotes.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings.html b/public/pages/ratings.html index 309e0bd..a4234be 100644 --- a/public/pages/ratings.html +++ b/public/pages/ratings.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/9pfs.html b/public/pages/ratings/9pfs.html index 4f0ce3b..862c14e 100644 --- a/public/pages/ratings/9pfs.html +++ b/public/pages/ratings/9pfs.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/bigminiboss.html b/public/pages/ratings/bigminiboss.html index a63fde2..81d4a2f 100644 --- a/public/pages/ratings/bigminiboss.html +++ b/public/pages/ratings/bigminiboss.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/coderelijah.html b/public/pages/ratings/coderelijah.html index 528eced..a4e37da 100644 --- a/public/pages/ratings/coderelijah.html +++ b/public/pages/ratings/coderelijah.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/jayayseaohbee14.html b/public/pages/ratings/jayayseaohbee14.html index 294d373..4881155 100644 --- a/public/pages/ratings/jayayseaohbee14.html +++ b/public/pages/ratings/jayayseaohbee14.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/pikachub2005.html b/public/pages/ratings/pikachub2005.html index 55d0630..9667a50 100644 --- a/public/pages/ratings/pikachub2005.html +++ b/public/pages/ratings/pikachub2005.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/ratings/youngchief.html b/public/pages/ratings/youngchief.html index 1537c49..d320b56 100644 --- a/public/pages/ratings/youngchief.html +++ b/public/pages/ratings/youngchief.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/services.html b/public/pages/services.html index 013ba4f..377374b 100644 --- a/public/pages/services.html +++ b/public/pages/services.html @@ -15,8 +15,8 @@ - + diff --git a/public/pages/test-loader.html b/public/pages/test-loader.html index e9e12ad..951d69e 100644 --- a/public/pages/test-loader.html +++ b/public/pages/test-loader.html @@ -15,8 +15,8 @@ - +