Introduction of room alerts

This commit is contained in:
Ziver Koc 2023-01-11 16:11:11 +01:00
parent ed04554a4a
commit 7747a10959
6 changed files with 158 additions and 6 deletions

View file

@ -146,3 +146,37 @@ body {
transform: rotate(359deg);
}
}
/*
* Animations
*/
.pulse-border {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
stroke-width: 3;
opacity: 1;
}
10% {
stroke-width: 5;
opacity: 0.2;
}
15% {
stroke-width: 5;
opacity: 0.2;
}
50% {
stroke-width: 3;
opacity: 1;
}
100% {
stroke-width: 3;
opacity: 1;
}
}