refacto des pages home, register, login, detail profile

This commit is contained in:
styve Lioumba
2025-11-15 10:31:11 +01:00
parent 0301a75e4d
commit 620b781219
16 changed files with 1106 additions and 453 deletions

View File

@@ -0,0 +1,49 @@
/* Animations simples et subtiles */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in {
animation: fadeIn 0.6s ease-out;
}
.animate-slide-up {
animation: slideUp 0.7s ease-out;
}
.animate-slide-up-delay {
animation: slideUp 0.7s ease-out 0.1s both;
}
.animate-fade-in-delay {
animation: fadeIn 0.8s ease-out 0.3s both;
}
/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}