connexion avec signalR

This commit is contained in:
Pierre Marx
2025-09-04 14:18:36 -04:00
parent d6f89ed686
commit 6069a7238b
3 changed files with 389 additions and 48 deletions

View File

@@ -13,6 +13,41 @@ body {
overflow: hidden;
}
/* === ANIMATIONS === */
@keyframes slideIn {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideOut {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
}
}
/* === PAGES === */
.page {
display: none;