css: Add pulse animation

This commit is contained in:
Johannes Meyer 2020-03-03 14:27:36 +01:00
parent d79d753b51
commit 9a900c62f5
1 changed files with 18 additions and 1 deletions

View File

@ -346,4 +346,21 @@
100% {
opacity: 0.2;
}
}
}
@keyframes pulse {
0% {
opacity: .5;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.2);
}
100% {
opacity: .5;
transform: scale(1);
}
}