|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Share+Tech+Mono&display=swap'); |
| 6 | + |
| 7 | +:root { |
| 8 | + --obsidian: #121214; |
| 9 | + --slate: #1a1a1e; |
| 10 | + --neon-cyan: #00f0ff; |
| 11 | + --industrial-amber: #ff9900; |
| 12 | +} |
| 13 | + |
| 14 | +*, |
| 15 | +*::before, |
| 16 | +*::after { |
| 17 | + box-sizing: border-box; |
| 18 | + margin: 0; |
| 19 | + padding: 0; |
| 20 | +} |
| 21 | + |
| 22 | +html, |
| 23 | +body { |
| 24 | + height: 100%; |
| 25 | + overflow: hidden; |
| 26 | + background-color: #121214; |
| 27 | + color: #00f0ff; |
| 28 | + font-family: 'JetBrains Mono', 'Share Tech Mono', monospace; |
| 29 | +} |
| 30 | + |
| 31 | +/* Scanline CRT overlay — purely decorative */ |
| 32 | +.scanlines::after { |
| 33 | + content: ''; |
| 34 | + position: fixed; |
| 35 | + inset: 0; |
| 36 | + background: repeating-linear-gradient( |
| 37 | + 0deg, |
| 38 | + transparent, |
| 39 | + transparent 2px, |
| 40 | + rgba(0, 240, 255, 0.012) 2px, |
| 41 | + rgba(0, 240, 255, 0.012) 4px |
| 42 | + ); |
| 43 | + pointer-events: none; |
| 44 | + z-index: 5; |
| 45 | +} |
| 46 | + |
| 47 | +/* Neon text glow utilities */ |
| 48 | +.neon-glow { |
| 49 | + text-shadow: |
| 50 | + 0 0 10px rgba(0, 240, 255, 0.8), |
| 51 | + 0 0 20px rgba(0, 240, 255, 0.5), |
| 52 | + 0 0 40px rgba(0, 240, 255, 0.3); |
| 53 | +} |
| 54 | + |
| 55 | +.amber-glow { |
| 56 | + text-shadow: |
| 57 | + 0 0 10px rgba(255, 153, 0, 0.8), |
| 58 | + 0 0 20px rgba(255, 153, 0, 0.5), |
| 59 | + 0 0 40px rgba(255, 153, 0, 0.3); |
| 60 | +} |
| 61 | + |
| 62 | +/* @react-three/xr VRButton override — repositioned and re-skinned */ |
| 63 | +#VRButton { |
| 64 | + position: fixed !important; |
| 65 | + bottom: 2rem !important; |
| 66 | + right: 2rem !important; |
| 67 | + z-index: 20 !important; |
| 68 | + background: rgba(0, 240, 255, 0.06) !important; |
| 69 | + border: 1px solid rgba(0, 240, 255, 0.4) !important; |
| 70 | + color: #00f0ff !important; |
| 71 | + font-family: 'JetBrains Mono', monospace !important; |
| 72 | + font-size: 0.7rem !important; |
| 73 | + letter-spacing: 0.18em !important; |
| 74 | + padding: 0.625rem 1.25rem !important; |
| 75 | + cursor: pointer !important; |
| 76 | + text-transform: uppercase !important; |
| 77 | + transition: background 0.2s ease, box-shadow 0.2s ease !important; |
| 78 | +} |
| 79 | + |
| 80 | +#VRButton:hover { |
| 81 | + background: rgba(0, 240, 255, 0.14) !important; |
| 82 | + box-shadow: 0 0 18px rgba(0, 240, 255, 0.35) !important; |
| 83 | +} |
| 84 | + |
| 85 | +/* Thin custom scrollbar for any rare overflow regions */ |
| 86 | +::-webkit-scrollbar { |
| 87 | + width: 3px; |
| 88 | +} |
| 89 | +::-webkit-scrollbar-track { |
| 90 | + background: #121214; |
| 91 | +} |
| 92 | +::-webkit-scrollbar-thumb { |
| 93 | + background: rgba(0, 240, 255, 0.2); |
| 94 | + border-radius: 2px; |
| 95 | +} |
0 commit comments