.userBanner {
color: white;
text-transform: uppercase;
font-weight: 700;
font-size: 69%;
border-radius: 90px 60px 90px 60px;
padding: 5px 7px;
background-size: 700% 700%;
border: .6mm ridge rgba(255,255,255,0.4);
animation: AnimBanner 10s ease infinite;
&.super
{
background-image: linear-gradient(270deg, #ffd700, #ffed4e, #daa520, #b8860b, #8b0000, #c41e3a, #800020, #4b0082, #6a0dad, #9400d3, #191970, #003153, #2e8b57, #50c878, #ffd700);
}
}
@keyframes AnimBanner
{
0%
{
background-position: 0% 50%
}
50%
{
background-position: 100% 50%
}
100%
{
background-position: 0% 50%;
}
}