.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;
}
.userBanner.super {
background-image: linear-gradient(270deg, #feea10, #ff931e, #df841a, #01a72c, #f819a7, #0859fc, #0045bb, #7b9de0, #80c3df, #008000, #32cd32, #da0, #c00);
}
@keyframes AnimBanner {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
.username--style"id" {
color: darkred;
font-weight: bold;
text-shadow: #4b0082 1px 1px 10px;
border-radius: 8px;
background: linear-gradient(270deg, #feea10, #ff931e, #df841a, #01a72c, #f819a7, #0859fc, #0045bb, #7b9de0, #80c3df, #008000, #32cd32, #da0, #c00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 300% 100%;
animation: gradientFlow 8s ease infinite;
}
@keyframes gradientFlow {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
}