From 91f0dd0a54b0d74d7a9dcf38bf46de0777f9a066 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 13:37:58 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20jump=20controls?= =?UTF-8?q?=20hint=20and=20score=20a11y?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- requirements.txt | 1 - src/views/mario-game.njk | 16 +++++++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) 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 diff --git a/src/views/mario-game.njk b/src/views/mario-game.njk index 67b6bd7..f98ca21 100644 --- a/src/views/mario-game.njk +++ b/src/views/mario-game.njk @@ -51,6 +51,19 @@ color: white; font-size: 20px; font-family: Arial; + font-weight: bold; + } + + #controls-hint { + position: absolute; + top: 40px; + left: 10px; + color: rgba(255, 255, 255, 0.9); + font-size: 14px; + font-family: Arial; + background: rgba(0, 0, 0, 0.3); + padding: 4px 8px; + border-radius: 4px; } @@ -58,7 +71,8 @@