pixelpass-portal / style.css
Krydev32's picture
the header is not okay, it's not done or aesthetic.
d2e555d verified
raw
history blame contribute delete
556 Bytes
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.hero-section {
animation: fadeIn 0.8s ease-out forwards;
}
.feature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #a855f7;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #7e22ce;
}