Site Upgrade - Discussion

i am unable to play fantasy it says login but i am already logged in
 
@MattW can we have gradient-style usernames in the shop? Here are some CSS snippets.

Place CSS inside Groups & Permissions -> User groups -> select your group "User name CSS"
Code:
text-transform: uppercase;
overflow: hidden;
background: linear-gradient(90deg, #000000, #ffffff, #000000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);

Place animation inside extra.less:
Code:
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}

Another snippet
Code:
background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #a80077 ), color-stop(1, #66ff00 ) );
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
  font-style: italic;
 

Users who are viewing this thread

Top