CoolFace
Apppublic

raham12/taskmaster-pro-client-earnings-tracker

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css59 linesDownload Raw Back to root
1/* Main styles */2@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');3 4body {5    font-family: 'Inter', sans-serif;6}7 8/* Custom scrollbar */9::-webkit-scrollbar {10    width: 8px;11    height: 8px;12}13 14::-webkit-scrollbar-track {15    background: #f1f1f1;16}17 18::-webkit-scrollbar-thumb {19    background: #888;20    border-radius: 4px;21}22 23::-webkit-scrollbar-thumb:hover {24    background: #555;25}26 27/* Animation classes */28.fade-in {29    animation: fadeIn 0.3s ease-in-out;30}31 32@keyframes fadeIn {33    from { opacity: 0; }34    to { opacity: 1; }35}36 37.slide-up {38    animation: slideUp 0.3s ease-out;39}40 41@keyframes slideUp {42    from { transform: translateY(20px); opacity: 0; }43    to { transform: translateY(0); opacity: 1; }44}45 46/* Custom styles for auth modal */47.auth-modal {48    backdrop-filter: blur(5px);49}50 51/* Dashboard card styles */52.dashboard-card {53    transition: all 0.2s ease;54}55 56.dashboard-card:hover {57    transform: translateY(-2px);58    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);59}