Blink projected halving block.

This commit is contained in:
softsimon
2020-05-12 01:12:38 +07:00
parent ba3aba918a
commit 422055046e
3 changed files with 27 additions and 1 deletions

View File

@@ -111,3 +111,21 @@
left: 0;
z-index: 10;
}
// Blinking block
.blink-bg {
color: #fff;
animation: blinkingBackground 1s infinite;
background: inherit !important;
}
@keyframes blinkingBackground {
0% { background-color: #10c018;}
25% { background-color: #1056c0;}
50% { background-color: #ef0a1a;}
75% { background-color: #CFB53B;}
100% { background-color: #04a1d5;}
}