Index (обсуждение | вклад) Нет описания правки |
Index (обсуждение | вклад) Нет описания правки |
||
Строка 1: | Строка 1: | ||
.citizen-table-wrapper { | |||
overflow-x: unset; | |||
} | |||
.citizen-table-wrapper table { | |||
overflow-x: unset; | |||
} | |||
.my_gradient_anim { | .my_gradient_anim { |
Версия от 22:21, 14 марта 2024
.citizen-table-wrapper {
overflow-x: unset;
}
.citizen-table-wrapper table {
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% }
}