X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=5ef681b99f702ca8efd8f987450d75ec8528e29b;hb=f3116551d31e18e0efb9fa72ea116ea455c2ac58;hp=eb161326ead0b82fb9fef2d43101ce8c45aa4267;hpb=5cc35bce941541486f261de799003d4f157e4d46;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index eb16132..5ef681b 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -83,6 +83,32 @@ #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; + }