VortexHunter23/opencoder-terminal-ai-wizard
0
1/* Base styles */2body {3 font-family: 'Inter', -apple-system, BlurMacSystemFont, sans-serif;4 line-height: 1.6;5}6 7/* Terminal mockup for FAQ section */8.terminal-mockup {9 background: #1e1e1e;10 border-radius: 8px;11 overflow: hidden;12 width: 100%;13 max-width: 600px;14 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);15}16 17.terminal-header {18 background: #333;19 padding: 8px 12px;20 display: flex;21 align-items: center;22}23 24.terminal-buttons {25 display: flex;26 gap: 6px;27 margin-right: 12px;28}29 30.terminal-buttons span {31 display: block;32 width: 12px;33 height: 12px;34 border-radius: 50%;35 background: #555;36}37 38.terminal-title {39 color: #aaa;40 font-size: 0.85rem;41 flex-grow: 1;42 text-align: center;43}44 45.terminal-body {46 padding: 16px;47 font-family: 'Courier New', monospace;48 min-height: 200px;49 display: flex;50 flex-direction: column;51 gap: 8px;52}53 54.terminal-output {55 margin-top: 8px;56 opacity: 0;57 animation: fadeIn 0.5s 0.3s forwards;58}59 60@keyframes fadeIn {61 to {62 opacity: 1;63 }64}65 66/* Responsive adjustments */67@media (max-width: 768px) {68 .terminal-mockup {69 margin-top: 2rem;70 }71}72 73/* Smooth scrolling */74html {75 scroll-behavior: smooth;76}