From 662ede5f24dd8029c633d7a38de5545b2a568e6c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 9 Oct 2023 22:18:01 -0400 Subject: [PATCH 1/1] src/index.html.in: enable the bus scroll animation --- src/index.html.in | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; + } -- 2.44.2