Index (обсуждение | вклад) Нет описания правки |
Index (обсуждение | вклад) Нет описания правки |
||
Строка 1: | Строка 1: | ||
.citizen-table-wrapper { | .citizen-table-wrapper { | ||
overflow-x: unset; | overflow-x: unset; | ||
} | |||
.css-selector { | |||
-webkit-text-fill-color: transparent; | |||
-webkit-background-clip: text !important; | |||
background: | |||
linear-gradient( | |||
45deg, | |||
#f00 0%, | |||
#0400ff 35%, | |||
#eaff00 50%, | |||
#b5b5b5 75%, | |||
#f00 100% | |||
); | |||
background-size: 500% auto; | |||
background-position: 200% 50%; | |||
animation: gradient-anim 6s linear infinite; | |||
} | |||
@keyframes gradient-anim { | |||
0% { background-position: 200% 50% } | |||
100% { background-position: 0% 50% } | |||
} | } |
Версия от 11:27, 13 марта 2024
.citizen-table-wrapper {
overflow-x: unset;
}
.css-selector {
-webkit-text-fill-color: transparent;
-webkit-background-clip: text !important;
background:
linear-gradient(
45deg,
#f00 0%,
#0400ff 35%,
#eaff00 50%,
#b5b5b5 75%,
#f00 100%
);
background-size: 500% auto;
background-position: 200% 50%;
animation: gradient-anim 6s linear infinite;
}
@keyframes gradient-anim {
0% { background-position: 200% 50% }
100% { background-position: 0% 50% }
}