Update static/css/style.css

This commit is contained in:
Blackwhitebear8 2025-08-13 16:03:05 +02:00
parent e5df3cccd3
commit a3de0df91b

View file

@ -415,4 +415,34 @@ canvas {
td.d-flex { td.d-flex {
gap: 8px; 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;
} }