File size: 1,309 Bytes
ab13a8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | @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); }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
background: #334155;
}
|