Skaiman
Проверенные
- Сообщения
- 18,378
- Решения
- 234
- Реакции
- 33,978
- Баллы
- 21,375
Код:
.username--style12:before {
.m-faBase();
.m-faContent(@fa-var-hurricane);
color: inherit;
padding-right: 4px;
display: inline-block;
animation: rotate-in-center 1s linear 0s infinite;
}
@keyframes rotate-in-center {
0% {
transform:rotate(0);
}
100% {
transform:rotate(360deg);
}
}
Код:
.username--style12:before { // Change the number 3 by the number of the user group you want.
.m-faBase();
content: "\f751"; // Change the unicode (f132) by the one you want to find on the site: Font Awesome Icons
color: inherit;
padding-right: 4px;
display: inline-block;
}