
Иконки будут мегать как гирлянды на елочке
Заходим в шаблоны - Extra Less пишем следующий код:
CSS:
.node--forum .node-icon i, .node--category .node-icon i {
animation: blink 1.5s infinite alternate;
}
.node--forum:nth-child(3n+1) .node-icon i {
animation-delay: 0s;
}
.node--forum:nth-child(3n+2) .node-icon i {
animation-delay: 0.5s;
}
.node--forum:nth-child(3n+3) .node-icon i {
animation-delay: 1s;
}
@keyframes blink {
from { opacity: 0.3; }
to { opacity: 1; filter: drop-shadow(0 0 8px gold); }
}