Spaces:
Running
Running
File size: 844 Bytes
e47a16a 19d8b23 e47a16a 19d8b23 e47a16a 19d8b23 e47a16a 19d8b23 e47a16a 19d8b23 e47a16a 19d8b23 e47a16a | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary-color: #6366f1; /* indigo-500 */
--secondary-color: #8b5cf6; /* violet-500 */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background-color: #111827; /* gray-900 */
color: #f9fafb; /* gray-50 */
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937; /* gray-800 */
}
::-webkit-scrollbar-thumb {
background: #4f46e5; /* indigo-600 */
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6366f1; /* indigo-500 */
}
/* Button hover effects */
a {
transition: all 0.3s ease;
}
/* Feather icons alignment */
.feather {
display: inline-block;
vertical-align: middle;
} |