]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
src/index.html.in: enable the bus scroll animation
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 10 Oct 2023 02:18:01 +0000 (22:18 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 10 Oct 2023 02:18:01 +0000 (22:18 -0400)
src/index.html.in

index 271651099a79f6d1c907f92caf0d5f9c6021579d..ee40cf8f18a76fd260c2fe325df2776c7786f3cc 100644 (file)
         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;
+      }
     </style>
   </head>