From c76afcf1683da029fb5b431a9493bcfcc391e2d7 Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 22 Dec 2023 21:32:34 +0000 Subject: [PATCH] actually animate the thing lmao --- html/channel.ejs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/html/channel.ejs b/html/channel.ejs index 2d038bcb..73cbdb13 100644 --- a/html/channel.ejs +++ b/html/channel.ejs @@ -351,6 +351,15 @@ text-transform:uppercase; box-shadow: 0 3px 14px #000; cursor: pointer; } + +@keyframes animateBg { + 0% { + background-position:0 0 + } + 100% { + background-position:100% 0 + } +} .video:hover{ border:solid; }