communitypulse-hub / style.css
vanrowin's picture
Create me a community website page that has menu for login to access the admin and users profile. admin profile can feed users monthly dues, community expenses, finance report on balance, donations while users profile will show profile and his monthly dues
f5c42d2 verified
Raw
History Blame Contribute Delete
732 Bytes
/* 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;
}
}