From d64bbce10d7956d2f891e7578b122c189d5081ec Mon Sep 17 00:00:00 2001 From: AsMurphy-student Date: Sun, 9 Nov 2025 17:18:25 -0500 Subject: [PATCH 1/2] Imported in Menu.css from report repo Placed at assets/Menu.css --- assets/Menu.css | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 assets/Menu.css diff --git a/assets/Menu.css b/assets/Menu.css new file mode 100644 index 0000000..9d675e8 --- /dev/null +++ b/assets/Menu.css @@ -0,0 +1,61 @@ +.menu-container { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; + /* Center items vertically */ + /* Full viewport height */ + gap: 20px; +} + +.menu-button { + display: block; + width: 250px; + padding: 20px; + background-color: #0056b3; + color: white; + text-decoration: none; + border-radius: 8px; + transition: transform 0.2s; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + text-align: center; +} + +.menu-button.highlighted { + background-color: #ffd700; + /* Accessible gold color */ + color: black; + /* Ensure good text contrast */ + transform: scale(1.1); + /* Slightly larger to make it more noticeable */ + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); + /* Slight shadow for emphasis */ +} + +.menu-button:hover { + transform: scale(1.05); + background-color: #003d80; +} + +.menu-content h2 { + margin: 0; + font-size: 24px; +} + +.menu-content p { + margin: 10px 0 0; + font-size: 16px; + /* normal line height is 1.3 */ + min-height: calc(1.3em * 1); /* 1 line */ +} + +.menu-button.disabled { + background-color: #8eb590; + transition: none; + cursor: default; +} + +.menu-button.disabled:hover { + transform: scale(1); + background-color: #8eb590; +} \ No newline at end of file From 8a1fd4847db8c9ac90dda54954acf4aa630b3231 Mon Sep 17 00:00:00 2001 From: AsMurphy-student Date: Sun, 9 Nov 2025 17:22:25 -0500 Subject: [PATCH 2/2] Added link to stylesheet at _layouts/default.html Linked stylesheet at assets/Menu.css --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 152fbaf..1f4163d 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,7 +6,7 @@ {{ page.title }} - +