These are the css than I'm trying to use
I added it on the end of global.css , Added the right username style
Tried with 3 browsers but it doesn't works on my forum
/** Impromptu End */
span.matmo {
font-family:Rancho;
-webkit-animation:rainbow 3s linear infinite;
animation:rainbow 3s linear infinite;
}
@keyframes rainbow {
from {
color: red;
text-shadow: 0 0 10px red;
}
15% {
color: orange;
text-shadow: 0 0 10px orange;
}
30% {
color: yellow;
text-shadow: 0 0 10px yellow;
}
45% {
color: green;
text-shadow: 0 0 10px green;
}
60% {
color: blue;
text-shadow: 0 0 10px blue;
}
75% {
color: indigo;
text-shadow: 0 0 10px indigo;
}
90% {
color: violet;
text-shadow: 0 0 10px violet;
}
to {
color: red;
text-shadow: 0 0 10px red;
}
}
@-webkit-keyframes rainbow {
from {
color: red;
text-shadow: 0 0 10px red;
}
15% {
color: orange;
text-shadow: 0 0 10px orange;
}
30% {
color: yellow;
text-shadow: 0 0 10px yellow;
}
45% {
color: green;
text-shadow: 0 0 10px green;
}
60% {
color: blue;
text-shadow: 0 0 10px blue;
}
75% {
color: indigo;
text-shadow: 0 0 10px indigo;
}
90% {
color: violet;
text-shadow: 0 0 10px violet;
}
to {
color: red;
text-shadow: 0 0 10px red;
}
}
.dat_sep {
background-color: #1d1d1d;
}
.dat_sep2 {
background-color: #161616;
}
@font-face {
font-family: 'Rancho';
font-style: normal;
font-weight: 400;
src: local('Rancho'), url(https://fonts.gstatic.com/s/rancho/v6/GOJpB432cIs2ZQ3ToRKy4fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
I added it on the end of global.css , Added the right username style
<span class="matmo">{username}</span>
Tried with 3 browsers but it doesn't works on my forum
