blackbox-ai-clone / style.css
Raikhan's picture
buatkan cloning website blackbox ai s
12ff5d9 verified
Raw
History Blame Contribute Delete
593 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
/* Smooth transitions for interactive elements */
button, input, a {
transition: all 0.2s ease;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1E1E1E;
}
::-webkit-scrollbar-thumb {
background: #3B82F6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563EB;
}