From f3116551d31e18e0efb9fa72ea116ea455c2ac58 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 10 Oct 2023 11:55:36 -0400 Subject: [PATCH] src/index.html.in: add the cloud animation --- src/index.html.in | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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; + } -- 2.44.2