From: Michael Orlitzky Date: Tue, 10 Oct 2023 02:18:01 +0000 (-0400) Subject: src/index.html.in: enable the bus scroll animation X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=662ede5f24dd8029c633d7a38de5545b2a568e6c;hp=8913a355135502d7ff13c0351477debf51e679ba;p=charm-bypass.git src/index.html.in: enable the bus scroll animation --- diff --git a/src/index.html.in b/src/index.html.in index 2716510..ee40cf8 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -55,6 +55,21 @@ font-family: "CharmBypass Ticket Text" !important; } + /************************/ + /* Scrolling animations */ + /************************/ + @keyframes busroll { + from { + transform: translate(0%, 0%); + } + to { + transform: translate(100%, 0%); + } + } + + #bus { + animation: busroll 15s linear infinite; + }