From a3de0df91b8e5916afc758501019a91be29bc006 Mon Sep 17 00:00:00 2001 From: Blackwhitebear8 Date: Wed, 13 Aug 2025 16:03:05 +0200 Subject: [PATCH] Update static/css/style.css --- static/css/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index c4c86dd..ad023bb 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -415,4 +415,34 @@ canvas { td.d-flex { gap: 8px; +} + +#progress { + position: fixed; + bottom: 20px; + right: 20px; + height: 70px; + width: 70px; + display: none; + place-items: center; + border-radius: 50%; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + cursor: pointer; + z-index: 1000; + transition: opacity 0.3s, visibility 0.3s; +} + +#progress.active { + display: grid; +} + +#progress-value { + display: grid; + place-items: center; + height: calc(100% - 10px); + width: calc(100% - 10px); + background-color: #ffffff; + border-radius: 50%; + font-size: 25px; + color: #0d6efd; } \ No newline at end of file