Шаблон:Бегущая строка: различия между версиями
Материал из Space Station 14 Вики
Aeonorien (обсуждение | вклад) Новая страница: «.marquee { display: block; overflow: hidden; white-space: nowrap; width: 100%; padding: 8px 0; box-sizing: border-box; } .marquee-inner { display: inline-block; white-space: nowrap; padding-left: 100%; animation: marquee 22s linear infinite; color: #eaeaea; } @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }» |
Aeonorien (обсуждение | вклад) м Aeonorien переименовал страницу Бегущая строка в Шаблон:Бегущая строка |
(нет различий)
| |
Версия от 15:54, 3 сентября 2026
.marquee {
display: block; overflow: hidden; white-space: nowrap; width: 100%; padding: 8px 0; box-sizing: border-box;
} .marquee-inner {
display: inline-block; white-space: nowrap; padding-left: 100%; animation: marquee 22s linear infinite; color: #eaeaea;
} @keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}