Add a fade in out animation when the server process

This commit is contained in:
Kerollmops
2020-07-12 11:34:48 +02:00
parent 92c2b1dd2d
commit 54afec58a3
2 changed files with 12 additions and 0 deletions

View File

@ -68,3 +68,13 @@ em {
padding-left: 10px;
color: rgba(0,0,0,.9);
}
@keyframes fadeInOut {
0% { opacity: 1; }
30% { opacity: 0.3; }
100% { opacity: 1; }
}
.fade-in-out {
animation: fadeInOut ease 1s infinite;
}