yahyaamara11/integer-explorer
0
1/* Base styles */2body {3 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;4 line-height: 1.6;5}6 7/* Custom scrollbar */8::-webkit-scrollbar {9 width: 8px;10}11 12::-webkit-scrollbar-track {13 background: #f1f1f1;14}15 16::-webkit-scrollbar-thumb {17 background: #6366f1;18 border-radius: 4px;19}20 21::-webkit-scrollbar-thumb:hover {22 background: #4f46e5;23}24 25/* Animation classes */26.fade-in {27 animation: fadeIn 0.5s ease-in;28}29 30@keyframes fadeIn {31 from { opacity: 0; }32 to { opacity: 1; }33}34 35.slide-up {36 animation: slideUp 0.5s ease-out;37}38 39@keyframes slideUp {40 from { 41 transform: translateY(20px);42 opacity: 0;43 }44 to { 45 transform: translateY(0);46 opacity: 1;47 }48}49 50/* Custom button styles */51.btn-primary {52 background-color: #6366f1;53 color: white;54 transition: all 0.3s ease;55}56 57.btn-primary:hover {58 background-color: #4f46e5;59 transform: translateY(-2px);60}61 62.btn-secondary {63 background-color: #e0e7ff;64 color: #6366f1;65 transition: all 0.3s ease;66}67 68.btn-secondary:hover {69 background-color: #c7d2fe;70}