From 47c72c98907ee40863bf90073199c3076f3a8054 Mon Sep 17 00:00:00 2001 From: avi Date: Thu, 7 May 2026 14:36:01 -0500 Subject: [PATCH] Save point: Scene 2 complete - cursor blink, pre-LEARN/LEARN text, keyboard shortcuts (Escape/Backspace) --- index.html | 289 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 270 insertions(+), 19 deletions(-) diff --git a/index.html b/index.html index 1184745..b3140df 100644 --- a/index.html +++ b/index.html @@ -90,6 +90,51 @@ opacity: 0; transition: opacity 1s ease; } + + #blinkCursor { + display: none; + width: 8px; + height: 14px; + background-color: #00ff00; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + opacity: 1; + } + + #scene2Text { + color: #00ff00; + font-family: 'Courier New', monospace; + font-size: 1.2rem; + line-height: 2; + text-align: center; + visibility: hidden; + } + + #learnBtn { + position: fixed; + bottom: 5%; + left: 50%; + transform: translateX(-50%); + z-index: 5; + padding: 1rem 3rem; + font-size: 1.1rem; + background-color: #001100; + color: #00ff00; + border: 2px solid #00ff00; + cursor: pointer; + visibility: hidden; + opacity: 0; + pointer-events: none; + transition: opacity 0.5s ease, background-color 0.2s ease; + font-family: 'Courier New', monospace; + letter-spacing: 2px; + } + + #learnBtn:hover { + background-color: #003300; + } @@ -103,9 +148,16 @@ -
+
+
+ +
+