diff --git a/public/index.html b/public/index.html index e57c7c5..75a173a 100644 --- a/public/index.html +++ b/public/index.html @@ -551,6 +551,31 @@ .prompt-box h3::before { content: '⏳ '; } + .prompt-box p { + color: var(--terminal-green); + font-family: var(--font-mono); + margin-bottom: 14px; + } + .prompt-opt-btn { + padding: 7px 16px; + margin: 4px 4px 4px 0; + background: rgba(0, 255, 255, 0.08); + border: 1px solid var(--terminal-cyan); + color: var(--terminal-cyan); + font-family: var(--font-mono); + font-size: 0.88em; + cursor: pointer; + transition: background 0.2s; + } + .prompt-opt-btn:hover { + background: rgba(0, 255, 255, 0.2); + box-shadow: 0 0 8px rgba(0, 255, 255, 0.3); + } + .prompt-opt-btn.answered { + opacity: 0.45; + cursor: default; + background: transparent; + } /* Boot Overlay */ .boot-overlay { position: fixed; @@ -1010,6 +1035,25 @@ + + +