Участник:Index/common.css: различия между версиями

Материал из Космическая Станция 14 Вики
Нет описания правки
Нет описания правки
Строка 4: Строка 4:
}
}
.citizen-table-wrapper table {
.citizen-table-wrapper table {
overflow-x: unset;
overflow: unset;
}
}



Версия от 22:22, 14 марта 2024

.citizen-table-wrapper {
	overflow-x: unset;
	
}
.citizen-table-wrapper table {
	overflow: 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% }
}