Index (обсуждение | вклад) Нет описания правки |
Index (обсуждение | вклад) Нет описания правки |
||
Строка 3: | Строка 3: | ||
} | } | ||
. | .my_gradient_anim { | ||
-webkit-text-fill-color: transparent; | -webkit-text-fill-color: transparent; | ||
-webkit-background-clip: text !important; | -webkit-background-clip: text !important; |
Версия от 11:27, 13 марта 2024
.citizen-table-wrapper {
overflow-x: unset;
}
.my_gradient_anim {
-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% }
}