Spaces:
Sleeping
Sleeping
File size: 1,076 Bytes
2dddd1f | 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 | @import "tailwindcss";
@theme {
--color-glass-dark: rgba(255, 255, 255, 0.05);
--color-glass-border: rgba(255, 255, 255, 0.1);
--color-accent: #3b82f6; /* Beautiful dynamic blue */
}
@layer base {
body {
@apply bg-neutral-950 text-neutral-100 antialiased font-sans;
}
/* Hide native browser date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
display: none;
-webkit-appearance: none;
}
}
.glass-panel {
@apply bg-glass-dark backdrop-blur-md border border-glass-border shadow-xl rounded-2xl transition-all duration-300;
}
.glass-panel:hover {
@apply border-white/20 shadow-2xl shadow-blue-500/10;
}
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fade-in-up 0.5s ease-out forwards;
}
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
|