Welcome!

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

SignUp Now!

Дайте срочно код CSS

Решение
1.

в "CSS-стиль для имени пользователя"

css:
    color: #FF0000;
    font-weight: bold;
    text-shadow: #f00 1px 1px 10px;
    border-radius: 8px;
    background: linear-gradient(270deg, #f00, #c00, #900, #f33, #f66, #f00, #c00, #900, #f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 100%;
    animation: gradientFlow 8s ease infinite;

в extra.less

css:
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%
    }

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

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

2. (аналогично)

css:
    font-weight: bold;
    background: linear-gradient(90deg, #f00, #b22222, #8b0000, #dc143c, #f00, #b22222...
Апр
126
40
Пользователь
1.

в "CSS-стиль для имени пользователя"

css:
    color: #FF0000;
    font-weight: bold;
    text-shadow: #f00 1px 1px 10px;
    border-radius: 8px;
    background: linear-gradient(270deg, #f00, #c00, #900, #f33, #f66, #f00, #c00, #900, #f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 100%;
    animation: gradientFlow 8s ease infinite;

в extra.less

css:
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%
    }

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

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

2. (аналогично)

css:
    font-weight: bold;
    background: linear-gradient(90deg, #f00, #b22222, #8b0000, #dc143c, #f00, #b22222, #8b0000, #dc143c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(139, 0, 0, 0.5);
    background-size: 300% 100%;
    animation: neonFlow 6s ease infinite;

css:
@keyframes neonFlow {
    0% {
        background-position: 0% 50%
    }

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

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