Archived
1
0

add flashy text

This commit is contained in:
Jeff Becker
2017-01-29 10:25:41 -05:00
parent 836d1212cc
commit b29446bd9d
2 changed files with 19 additions and 0 deletions

View File

@@ -662,4 +662,18 @@ th > label {
.nazi {
padding: 10px;
}
@keyframes flash {
0% { opacity: 1;}
49% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 0; }
}
.flashy {
animation: flash 0.5s infinite;
animation-timing-function: linear;
text-align: center;
}