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