Special halvening block and fireworks.

fixes #50
This commit is contained in:
softsimon
2020-04-09 17:46:30 +07:00
parent 53999dbea5
commit 38d424f793
5 changed files with 165 additions and 1 deletions

View File

@@ -101,3 +101,19 @@
border-right: 35px solid transparent;
border-bottom: 35px solid #FFF;
}
// 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;}
}