From 282eb1108fbfe6d1bc61bb49baefe3ee979d80b8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 22 Oct 2023 18:39:39 -0400 Subject: [PATCH] index.html.in: don't blink the expiration date/time after 10 minutes I'm pretty sure this is when CharmPass stops blinking. --- index.html.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html.in b/index.html.in index 3a5af46..9d666de 100644 --- a/index.html.in +++ b/index.html.in @@ -59,7 +59,8 @@ } #tickettime, #ticketdate { - animation: blink 2s linear infinite; + /* 300 two-second blinks is ten minutes */ + animation: blink 2s linear 300; } /* Define, load, and specify the custom font we use for the ticket -- 2.44.2