From 9af3ef4ceea6636e675df97148500bc83c7660ee Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 13:24:15 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20keyboard=20?= =?UTF-8?q?instruction=20text=20and=20aria-live=20score=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Adds visible instructions on how to jump (Space or Up Arrow). - Enhances score container with `aria-live="polite"` and `aria-atomic="true"` for screen readers. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- src/views/mario-game.njk | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/views/mario-game.njk b/src/views/mario-game.njk index 67b6bd7..04901b8 100644 --- a/src/views/mario-game.njk +++ b/src/views/mario-game.njk @@ -52,13 +52,24 @@ font-size: 20px; font-family: Arial; } + + #instructions { + position: absolute; + top: 40px; + left: 10px; + color: white; + font-size: 16px; + font-family: Arial; + opacity: 0.9; + }
-
Score: 0
+
Score: 0
+
Press Space or ↑ to jump
From 575d90b955c94f19d5f119860233b0cedd225c66 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 13:27:47 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20keyboard=20?= =?UTF-8?q?instruction=20text=20and=20aria-live=20score=20updates=20+=20fi?= =?UTF-8?q?x=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Adds visible instructions on how to jump (Space or Up Arrow). - Enhances score container with `aria-live="polite"` and `aria-atomic="true"` for screen readers. - Removes 'venv' from requirements.txt to fix CI installation failures. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cfaa995..4ad1501 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ numpy pandas requests -venv