From a088db3c7b8757fc78fd6b48fce6516275f4de8e Mon Sep 17 00:00:00 2001 From: nate smith Date: Sat, 17 Aug 2024 14:28:13 -0500 Subject: [PATCH] add movetarget class --- templates/index.tmpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/templates/index.tmpl b/templates/index.tmpl index e5202eb..c5dfc29 100644 --- a/templates/index.tmpl +++ b/templates/index.tmpl @@ -54,6 +54,21 @@ a { animation-duration: 1s; } +.movetarget { + /* animation-name: rainbow-top-border; + animation-duration: 1s; */ + + border-top: 2px solid grey; +} + +@keyframes rainbow-top-border { + 20%{border-top: 2px solid red;} + 20%{border-top: 2px solid orange;} + 60%{border-top: 2px solid yellow;} + 80%{border-top: 2px solid green;} + 100%{border-top: 2px solid blue;} +} + @keyframes rainbow { 20%{color: red;} 40%{color: orange;}