| @tailwind base; |
| @tailwind components; |
| @tailwind utilities; |
|
|
| * { margin: 0; padding: 0; box-sizing: border-box; } |
| html { scroll-behavior: smooth; } |
|
|
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif; |
| -webkit-font-smoothing: antialiased; |
| -moz-osx-font-smoothing: grayscale; |
| } |
|
|
| ::selection { background: rgba(16, 185, 129, 0.15); } |
|
|
| ::-webkit-scrollbar { width: 6px; height: 6px; } |
| ::-webkit-scrollbar-track { background: transparent; } |
| ::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; } |
| ::-webkit-scrollbar-thumb:hover { background: #475569; } |
|
|
| pre { tab-size: 2; } |
|
|
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(8px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| .animate-fade-in { animation: fadeIn 0.4s ease-out; } |
|
|
| @keyframes shimmer { |
| 0% { background-position: -200% 0; } |
| 100% { background-position: 200% 0; } |
| } |
| .animate-shimmer { |
| background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent); |
| background-size: 200% 100%; |
| animation: shimmer 2s infinite; |
| } |
|
|