From cc49499ac6f2149f33e1f5f8e6fdcd74a1e6a0c8 Mon Sep 17 00:00:00 2001 From: Andrew Simonson Date: Mon, 6 Feb 2023 18:08:29 -0600 Subject: [PATCH] minor appearances --- .gitignore | 3 ++- src/static/css/App.css | 8 ++++---- src/static/js/idler.js | 2 +- src/static/js/responsive.js | 1 - 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 14717bd..b6a0822 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .venv __pycache__ -notes.txt \ No newline at end of file +notes.txt +react_OLD \ No newline at end of file diff --git a/src/static/css/App.css b/src/static/css/App.css index e8ec674..3eda4b5 100644 --- a/src/static/css/App.css +++ b/src/static/css/App.css @@ -148,12 +148,12 @@ a { text-align: center; font-size: 1.2rem; font-size: 1rem; - background-color: rgb(156, 49, 45, .4); - cursor: pointer; + background-color: rgba(139, 36, 36, 0.5); } .navElement:hover { - background-color: rgb(156, 49, 45, .8); + background-color: rgba(139, 36, 36, 0.8); + cursor: pointer; } .navElement * { @@ -195,7 +195,7 @@ a { padding-left: 8rem; width: calc(100%-8rem); min-height: calc(100vh - 8rem); - background-color: rgb(44, 44, 44, .85); + background-color: rgb(24, 24, 24, .85); padding-bottom: 1rem; overflow: hidden; transition: .4s; diff --git a/src/static/js/idler.js b/src/static/js/idler.js index 2fa1765..3c4e75f 100644 --- a/src/static/js/idler.js +++ b/src/static/js/idler.js @@ -67,7 +67,7 @@ function windowResized() { } function draw() { - background(32); + background(24); for (let i = 0; i < balls.length; i++) { balls[i].update(); diff --git a/src/static/js/responsive.js b/src/static/js/responsive.js index 3cccfff..1ea5c25 100644 --- a/src/static/js/responsive.js +++ b/src/static/js/responsive.js @@ -82,7 +82,6 @@ function toggleMenu() { } async function goto(location, {push=true, toggle=true}={}) { - console.log(toggle) let a = await fetch("/api/goto/" + location, { credentials: "include", method: "GET",