Files
MoonPro.net/MP-Tablet/Content/flashing.less
T
2018-03-14 18:17:48 +01:00

24 lines
465 B
Plaintext

.flashingRed {
animation-duration: 0.75s;
animation-timing-function: steps(2);
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
animation-name: flsRed;
transform: translateZ(0);
}
@keyframes flsRed {
from {
color: #ffc107;
background-color: #c82332;
/*border: 5px solid #dc3545;*/
}
to {
color: #FFF;
background-color: #ecb100;
/*border: 5px solid #ffc107;*/
}
}