Есть вложенность
<div class="animation">
<a href="#">
<div class="text-muted">asdsad</div>
<div class="someclass">aasdasdsad</div>
</a>
</div>
.animation {
-webkit-animation: flash-bg 1s ease-out;
-o-animation: flash-bg 1s ease-out;
animation: flash-bg 1s ease-out;
}
@-webkit-keyframes flash-bg {
0% { background-color: none;}
50% { background-color: @color-green-success;}
100% { background-color: none;}
}
@-moz-keyframes flash-bg {
0% { background-color: none;}
50% { background-color: @color-green-success;}
100% { background-color: none;}
}
@-ms-keyframes flash-bg {
0% { background-color: none;}
50% { background-color: @color-green-success;}
100% { background-color: none;}
}
Анимацию вешаю на .animation. Как сделать, чтобы у неё включался фон, а у вложенной А, допустим, менялся цвет шрифта?