facadeforge-pro / style.css
Fedorchigarev's picture
Role
088476a verified
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #0d9488;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #0d9488;
}
/* Animation classes */
.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Button hover effects */
.btn-primary {
transition: all 0.3s ease;
transform: translateY(0);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2);
}
.btn-secondary {
transition: all 0.3s ease;
transform: translateY(0);
}
.btn-secondary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(217, 70, 239, 0.2);
}