[new] blink when running

This commit is contained in:
2021-01-08 16:28:24 +00:00
parent d3558653d4
commit f223fa8c9a
5 changed files with 32 additions and 7 deletions

View File

@@ -167,6 +167,14 @@ body::after {
background-color: #f5f5f5;
}
.blink_me {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% { opacity: 0; }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {