X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=ff5410f137a5e1c850d7cc1f7c3706fa3661ad66;hb=afb957f576b1e55cf923436a0c4d5e902b437fc2;hp=271651099a79f6d1c907f92caf0d5f9c6021579d;hpb=f74682c5ed759123da496f43000835d1b3cbc05f;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index 2716510..ff5410f 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -55,6 +55,60 @@ font-family: "CharmBypass Ticket Text" !important; } + /************************/ + /* Scrolling animations */ + /************************/ + @keyframes busroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } + } + + #bus { + animation: busroll 20s linear infinite; + } + + @keyframes tramroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } + } + + #tram { + animation: tramroll 15s linear infinite; + } + + @keyframes cloudsfloat { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #clouds { + animation: cloudsfloat 40s linear infinite; + } + + @keyframes cloudscopyfloat { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #cloudscopy { + animation: cloudscopyfloat 40s linear infinite; + }