Added a progressbar

This commit is contained in:
2025-11-10 15:38:59 +01:00
parent 26f8715ae8
commit f4c45f8371
3 changed files with 33 additions and 0 deletions
+22
View File
@@ -108,3 +108,25 @@ h1 {
align-content: center;
}
.progressbar{
position: relative;
width: 210px;
height: 30px;
background: darkslategray;
border-radius: 5px;
overflow: hidden;
}
.progress_fill{
width: 0%;
height: 100%;
background: green;
transition: all 0.2s;
}
.progress_text{
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
}