marquee.css
ASCII text
1.ticker-wrapper { 2overflow: hidden; 3display: block; 4width: 100%; 5} 6 7.ticker-wrapper .ticker { 8animation: infinite linear ticker 14s; 9white-space: nowrap; 10display: inline-block; 11box-sizing: content-box; 12} 13 14.ticker-wrapper.pauseonhover:hover > * { 15animation-play-state: paused; 16} 17 18@keyframes ticker { 190% { 20margin-left: 100%; 21transform: translateX(0%); 22} 23 24100% { 25margin-left: 0; 26transform: translateX(-100%); 27} 28} 29 30.cool-people-prj :any-link { 31text-decoration: none; 32} 33 34@media (prefers-reduced-motion) { 35.ticker-wrapper .ticker { 36animation: none; 37} 38 39.ticker-wrapper { 40overflow: scroll; 41} 42} 43 44.ticker-wrapper.ticker-reversed .ticker { 45animation-direction: reverse; 46} 47 48.cool-people-prj-no-bttn :any-link { 49margin-right: 5px; 50} 51