first commit

This commit is contained in:
2026-08-20 07:56:32 +00:00
commit 89d84021f3
4 changed files with 337 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/* Animation de défilement infini pour les bandeaux */
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
.animate-ticker {
display: flex;
width: max-content;
animation: scroll linear infinite;
}
.animate-ticker:hover {
animation-play-state: paused;
}