Spaces:
Running
Running
File size: 732 Bytes
f5c42d2 3bfd305 f5c42d2 3bfd305 f5c42d2 3bfd305 f5c42d2 3bfd305 f5c42d2 | 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 | /* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
}
/* Custom utility classes */
.shadow-soft {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}
/* Animation classes */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
body {
@apply bg-gray-900 text-gray-100;
}
.bg-white {
@apply bg-gray-800;
}
.text-gray-600, .text-gray-800 {
@apply text-gray-300;
}
} |