Add fade up effects

This commit is contained in:
MartinBraquet
2026-06-08 23:47:35 +02:00
parent 5e2dd5757c
commit 1b19f531fa

View File

@@ -563,6 +563,28 @@ ol > li::marker {
animation: profile-appear 0.7s ease-out;
}
/* Home hero entrance */
@keyframes fade-up {
from {
opacity: 0;
transform: translateY(18px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-up {
animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media (prefers-reduced-motion: reduce) {
.animate-fade-up {
animation: none;
}
}
.guidance {
opacity: 0.7;
font-size: 14px;