- Discussions
- 4 647
- Messages
- 12 059
- Solutions
- 81
- J'aime
- 7 615
- Points
- 198
Dans votre template extra.less ajoutez ces codes :
Changer le numéro style12 par le numéro de votre groupe utilisateur.
Résultat :
Code:
.username .style2 {
font-family: 'Pacifico', cursive;
font-size: 14px;
text-align: center;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
-webkit-animation: rainbow 3s infinite;
-ms-animation: rainbow 3s infinite;
animation: rainbow 3s infinite;
}
@-webkit-keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
30%{color: CadetBlue;}
40%{color: yellow;}
50%{color: coral;}
60%{color: green;}
70%{color: cyan;}
80%{color: DeepPink;}
90%{color: DodgerBlue;}
100%{color: orange;}
}
@-ms-keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
40%{color: yellow;}
60%{color: green;}
100%{color: orange;}
}
@keyframes rainbow{
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
40%{color: yellow;}
60%{color: green;}
100%{color: orange;}
}
}
Résultat :
