| @tailwind base; |
| @tailwind components; |
| @tailwind utilities; |
|
|
| @layer base { |
| :root { |
| --background: 210 40% 98%; |
| --foreground: 222 47% 11%; |
| --card: 0 0% 100%; |
| --primary: 221 83% 53%; |
| --radius: 1rem; |
| } |
|
|
| body { |
| @apply bg-[#f9fafb] text-slate-900 antialiased; |
| font-feature-settings: "ss01", "ss02", "cv01", "cv11"; |
| } |
| } |
|
|
| @layer components { |
| |
| .glass-card { |
| @apply bg-white/80 backdrop-blur-md border border-white/20 shadow-sm; |
| } |
|
|
| |
| .transition-all-slow { |
| transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); |
| } |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 6px; |
| } |
|
|
| ::-webkit-scrollbar-track { |
| @apply bg-transparent; |
| } |
|
|
| ::-webkit-scrollbar-thumb { |
| @apply bg-slate-200 rounded-full hover:bg-slate-300; |
| } |