diff --git a/client/src/App.css b/client/src/App.css index ae5827d..8abb5ec 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -4,37 +4,43 @@ display: flex; flex-direction: column; overflow: hidden; + background: #2c2c2c; } .view-controls { display: flex; gap: 0.5rem; padding: 0.75rem; - background: #1e293b; - border-bottom: 2px solid #334155; + background: #3b3b3b; + border-bottom: 3px solid #1a1a1a; + box-shadow: inset 0 -2px 0 #555; } .view-controls button { padding: 0.5rem 1rem; - border: none; - background: #334155; - color: #e2e8f0; - border-radius: 0.375rem; + border: 2px solid #1a1a1a; + background: #6b6b6b; + color: #e0e0e0; + border-radius: 0; font-size: 0.875rem; - font-weight: 600; + font-weight: 700; cursor: pointer; - transition: all 0.2s; + transition: all 0.1s; + font-family: 'Silkscreen', 'Courier New', monospace; + text-shadow: 1px 1px 0 #1a1a1a; + box-shadow: inset 0 -2px 0 #444, inset 0 2px 0 #888; } .view-controls button:hover { - background: #475569; - transform: translateY(-1px); + background: #7b7b7b; + box-shadow: inset 0 -2px 0 #555, inset 0 2px 0 #999; } .view-controls button.active { - background: #3b82f6; + background: #4a8c2a; color: white; - box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); + box-shadow: inset 0 2px 0 #6ab04c, inset 0 -2px 0 #2d6b1a; + border-color: #1a1a1a; } .app-content {