<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.marquee {
  overflow: hidden;
  position: relative;
}
.marquee::after {
  content: "";
  white-space: nowrap;
  display: inline-block;
}
.marquee &gt; .marquee-inner {
  position: absolute;
  top: 0;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.marquee &gt; .marquee-inner:hover {
  animation-play-state: paused;
  cursor: default;
}
@keyframes marquee {
    0% { left: 100%; transform: translate(0); }
  100% { left: 0; transform: translate(-100%); }
}
</pre></body></html>