X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=5ef681b99f702ca8efd8f987450d75ec8528e29b;hb=f3116551d31e18e0efb9fa72ea116ea455c2ac58;hp=ee40cf8f18a76fd260c2fe325df2776c7786f3cc;hpb=662ede5f24dd8029c633d7a38de5545b2a568e6c;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index ee40cf8..5ef681b 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -68,7 +68,46 @@ } #bus { - animation: busroll 15s linear infinite; + animation: busroll 20s linear infinite; + } + + @keyframes tramroll { + from { + transform: translate(0%, 0%); + } + to { + transform: translate(100%, 0%); + } + } + + #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; }