Introduction of room alerts
This commit is contained in:
parent
ed04554a4a
commit
7747a10959
6 changed files with 158 additions and 6 deletions
34
hal-core/resources/web/css/hal.css
vendored
34
hal-core/resources/web/css/hal.css
vendored
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue