|
| 1 | +:root { |
| 2 | + --bg-color: #0a0b0d; |
| 3 | + --panel-color: #161b22; |
| 4 | + --accent-color: #58a6ff; |
| 5 | + --neon-green: #7ee787; |
| 6 | + --neon-red: #ff7b72; |
| 7 | +} |
| 8 | + |
| 9 | +body { |
| 10 | + background-color: var(--bg-color); |
| 11 | + color: #c9d1d9; |
| 12 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 13 | + display: flex; |
| 14 | + justify-content: center; |
| 15 | + align-items: center; |
| 16 | + min-height: 100vh; |
| 17 | + margin: 0; |
| 18 | +} |
| 19 | + |
| 20 | +.glass-panel { |
| 21 | + background: rgba(22, 27, 34, 0.8); |
| 22 | + backdrop-filter: blur(10px); |
| 23 | + border: 1px solid #30363d; |
| 24 | + padding: 30px; |
| 25 | + border-radius: 15px; |
| 26 | + width: 90%; |
| 27 | + max-width: 1000px; |
| 28 | + box-shadow: 0 10px 30px rgba(0,0,0,0.5); |
| 29 | +} |
| 30 | + |
| 31 | +.glow-text { |
| 32 | + text-align: center; |
| 33 | + letter-spacing: 5px; |
| 34 | + color: var(--accent-color); |
| 35 | + text-shadow: 0 0 10px rgba(88, 166, 255, 0.5); |
| 36 | +} |
| 37 | + |
| 38 | +.glow-text span { color: white; } |
| 39 | + |
| 40 | +.status { text-align: center; font-size: 12px; margin-bottom: 20px; } |
| 41 | +.online { color: var(--neon-green); font-weight: bold; } |
| 42 | + |
| 43 | +.editor-section { |
| 44 | + display: flex; |
| 45 | + gap: 20px; |
| 46 | + margin-bottom: 20px; |
| 47 | +} |
| 48 | + |
| 49 | +.box { flex: 1; display: flex; flex-direction: column; } |
| 50 | +label { font-size: 10px; margin-bottom: 5px; color: #8b949e; } |
| 51 | + |
| 52 | +textarea { |
| 53 | + background: #0d1117; |
| 54 | + border: 1px solid #30363d; |
| 55 | + border-radius: 8px; |
| 56 | + height: 350px; |
| 57 | + color: var(--neon-green); |
| 58 | + padding: 15px; |
| 59 | + font-family: 'Consolas', monospace; |
| 60 | + resize: none; |
| 61 | + transition: 0.3s; |
| 62 | +} |
| 63 | + |
| 64 | +textarea:focus { |
| 65 | + outline: none; |
| 66 | + border-color: var(--accent-color); |
| 67 | + box-shadow: 0 0 8px rgba(88, 166, 255, 0.2); |
| 68 | +} |
| 69 | + |
| 70 | +.actions { display: flex; gap: 10px; } |
| 71 | + |
| 72 | +button { |
| 73 | + flex: 1; |
| 74 | + padding: 15px; |
| 75 | + border: none; |
| 76 | + border-radius: 8px; |
| 77 | + font-weight: bold; |
| 78 | + cursor: pointer; |
| 79 | + transition: 0.3s; |
| 80 | +} |
| 81 | + |
| 82 | +.btn-primary { background: var(--accent-color); color: white; } |
| 83 | +.btn-primary:hover { background: #1f6feb; transform: translateY(-2px); } |
| 84 | + |
| 85 | +.btn-secondary { background: #21262d; color: #c9d1d9; border: 1px solid #30363d; } |
| 86 | +.btn-secondary:hover { background: #30363d; } |
0 commit comments