Spaces:
Running
Running
File size: 779 Bytes
86a3569 71f3abf 86a3569 71f3abf 86a3569 71f3abf 86a3569 71f3abf 86a3569 71f3abf 86a3569 | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary: #6366f1;
--secondary: #f472b6;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
@apply bg-gray-200 dark:bg-gray-800;
}
::-webkit-scrollbar-thumb {
@apply bg-indigo-500 dark:bg-pink-500 rounded-full;
}
/* Animation classes */
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.animate-pulse-slow {
animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-slow {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
} |