X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=ee40cf8f18a76fd260c2fe325df2776c7786f3cc;hb=662ede5f24dd8029c633d7a38de5545b2a568e6c;hp=271651099a79f6d1c907f92caf0d5f9c6021579d;hpb=8913a355135502d7ff13c0351477debf51e679ba;p=charm-bypass.git 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; + }