kuzbka/github-style-mobile-bank-app
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');2 3body {4 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;5 -webkit-font-smoothing: antialiased;6 -moz-osx-font-smoothing: grayscale;7}8 9/* Custom scrollbar for dark mode */10.dark ::-webkit-scrollbar {11 width: 8px;12}13 14.dark ::-webkit-scrollbar-track {15 background: #2b3137;16}17 18.dark ::-webkit-scrollbar-thumb {19 background: #444d56;20 border-radius: 4px;21}22 23.dark ::-webkit-scrollbar-thumb:hover {24 background: #586069;25}26 27/* Animation for buttons */28button {29 transition: all 0.2s ease;30}31 32button:hover {33 transform: translateY(-1px);34}35 36/* Pulse animation for notifications */37@keyframes pulse {38 0%, 100% {39 opacity: 1;40 }41 50% {42 opacity: 0.5;43 }44}45 46.animate-pulse {47 animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;48}