From d76a605b5caea39b66ac2c8b6365d4196ccc6741 Mon Sep 17 00:00:00 2001 From: seditionist <84986004+seditionist@users.noreply.github.com> Date: Mon, 10 Feb 2025 02:12:03 -0500 Subject: [PATCH] feat(client): Use hotkey to show controls rather than icon (#1239) --- view/client.ejs | 47 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/view/client.ejs b/view/client.ejs index d83a9e36b9..4f849299bb 100644 --- a/view/client.ejs +++ b/view/client.ejs @@ -61,6 +61,17 @@ #controls { margin-bottom: 10px; } + + @keyframes blink { + 50% { + opacity: 0.5; + } + } + + .blink { + animation: blink 1.5s linear infinite; + } +