Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Как сделать такой же ник

Апр
143
53
Пользователь
в "css для имени пользователя"

css:
    background: linear-gradient(to right, #f00, #ffa500, #ff0, #008000, #0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 20px;
    font-weight: bold;
    font-size: 94.5%;
    animation: AnimNic 6s ease infinite

в extra.less
css:
@keyframes AnimNic {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}
 
Сверху