| @import "tailwindcss"; |
|
|
| :root { |
| --background: #f8fafc; |
| --foreground: #0f172a; |
| --primary: #6366f1; |
| --glass: rgba(255, 255, 255, 0.7); |
| --glass-border: rgba(255, 255, 255, 0.3); |
| } |
|
|
| .dark { |
| --background: #020617; |
| --foreground: #f8fafc; |
| --primary: #818cf8; |
| --glass: rgba(15, 23, 42, 0.7); |
| --glass-border: rgba(30, 41, 59, 0.5); |
| } |
|
|
| body { |
| background-color: var(--background); |
| color: var(--foreground); |
| font-family: 'Inter', system-ui, -apple-system, sans-serif; |
| overflow-x: hidden; |
| } |
|
|
| .glass-card { |
| background: var(--glass); |
| backdrop-filter: blur(12px); |
| -webkit-backdrop-filter: blur(12px); |
| border: 1px solid var(--glass-border); |
| box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); |
| } |
|
|
| .gradient-text { |
| background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| } |
|
|
| .animate-in { |
| animation: fadeIn 0.5s ease-out forwards; |
| } |
|
|
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 6px; |
| } |
| ::-webkit-scrollbar-track { |
| background: transparent; |
| } |
| ::-webkit-scrollbar-thumb { |
| background: #cbd5e1; |
| border-radius: 10px; |
| } |
| .dark ::-webkit-scrollbar-thumb { |
| background: #334155; |
| } |
|
|