diff --git a/the-matrix/index.html b/the-matrix/index.html index 9e3624f..cdc98a8 100644 --- a/the-matrix/index.html +++ b/the-matrix/index.html @@ -24,7 +24,6 @@ color: #00ff41; font-size: 11px; line-height: 1.8; text-shadow: 0 0 6px #00ff41; max-width: 240px; } - #status-panel .label { color: #007722; } #chat-panel { position: fixed; bottom: 16px; left: 16px; right: 16px; max-height: 180px; overflow-y: auto; @@ -34,11 +33,24 @@ } .chat-entry { opacity: 0.8; } .chat-entry .agent-name { color: #00ff88; font-weight: bold; } + .chat-ts { color: #004d18; font-size: 10px; } #connection-status { position: fixed; bottom: 16px; right: 16px; font-size: 11px; color: #555; + pointer-events: none; } #connection-status.connected { color: #00ff41; text-shadow: 0 0 6px #00ff41; } + #chat-clear-btn { + position: fixed; bottom: 16px; right: 110px; + font-family: 'Courier New', monospace; + font-size: 10px; color: #004d18; + background: transparent; border: 1px solid #004d18; + padding: 2px 6px; cursor: pointer; + pointer-events: all; z-index: 20; + text-shadow: none; + transition: color 0.2s, border-color 0.2s; + } + #chat-clear-btn:hover { color: #00ff41; border-color: #00ff41; }
@@ -55,6 +67,7 @@