File size: 1,259 Bytes
9202e58 bd35c1c 9202e58 bd35c1c 9202e58 bd35c1c 9202e58 bd35c1c 9202e58 bd35c1c 9202e58 | 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 64 65 66 67 68 69 70 71 | /* Undefined Theme Styles */
/* Note: 'undefined' is not a valid Tailwind color class */
/* This is a placeholder style file for the undefined theme project */
/* Custom animations for smooth transitions */
* {
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-track {
background: #374151;
}
.dark ::-webkit-scrollbar-thumb {
background: #6b7280;
}
.dark ::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
/* Custom focus styles */
button:focus,
input:focus,
textarea:focus {
outline: 2px solid #3b82f6;
outline-offset: 2px;
}
/* Card hover effects */
.hover-lift:hover {
transform: translateY(-2px);
}
/* Loading animation */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
} |