Spaces:
Sleeping
Sleeping
| /* Terminal Toast */ | |
| .toast-terminal { | |
| min-width: 400px; | |
| flex-direction: column; | |
| align-items: flex-start; | |
| gap: 8px; | |
| background: rgba(15, 23, 42, 0.95); | |
| } | |
| .terminal-window { | |
| width: 100%; | |
| height: 200px; | |
| background: #000; | |
| color: #0f0; | |
| font-family: 'Courier New', Courier, monospace; | |
| font-size: 0.8rem; | |
| padding: 10px; | |
| border-radius: 6px; | |
| overflow-y: auto; | |
| border: 1px solid #333; | |
| white-space: pre-wrap; | |
| box-shadow: inset 0 0 10px rgba(0,0,0,0.5); | |
| } | |
| .terminal-window::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| .terminal-window::-webkit-scrollbar-thumb { | |
| background: #333; | |
| border-radius: 4px; | |
| } | |
| .terminal-header { | |
| font-weight: bold; | |
| color: #fff; | |
| margin-bottom: 5px; | |
| display: flex; | |
| justify-content: space-between; | |
| width: 100%; | |
| } | |