From a4267f646e4d1a8abc2c871b6b006e5874990ae7 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sun, 6 Feb 2022 10:19:58 +0100 Subject: [PATCH] Animated progress dialog. --- website/css/dialogs.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/website/css/dialogs.css b/website/css/dialogs.css index cd14a60..3082928 100644 --- a/website/css/dialogs.css +++ b/website/css/dialogs.css @@ -228,8 +228,19 @@ div.ov_progress div.ov_progress_img svg { width: 80px; height: 80px; - margin-bottom: 10px; + margin-top: 5px; + margin-bottom: 15px; display: inline-block; + animation: ov_progress_img_kf 5.0s linear infinite; +} + +@keyframes ov_progress_img_kf { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } } div.ov_progress div.ov_progress_text