Update static/css/style.css
This commit is contained in:
parent
e5df3cccd3
commit
a3de0df91b
1 changed files with 30 additions and 0 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue