| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap'); | |
| :root { | |
| --header-height: 64px; | |
| } | |
| body { | |
| background-color: #050507; | |
| color: #e2e8f0; | |
| overflow: hidden; | |
| } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #0f1115; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #2d3748; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #4a5568; | |
| } | |
| /* Animations */ | |
| @keyframes dash { | |
| to { | |
| stroke-dashoffset: 0; | |
| } | |
| } | |
| .connection-line { | |
| stroke-dasharray: 10; | |
| animation: dash 1s linear infinite; | |
| } |