orbit-premium-clone / style.css
Worexj's picture
https://orbitpremium.com/
e47a16a verified
raw
history blame contribute delete
844 Bytes
@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;
}