Add progress bar to quiz and update survey instructions for clarity

This commit is contained in:
2025-01-30 19:05:06 +02:00
parent a90bb7f5ca
commit 047707fede
4 changed files with 30 additions and 0 deletions

View File

@@ -170,6 +170,22 @@ form button {
margin-bottom: 20px;
}
#progress-bar-container {
width: 100%;
background-color: #f3f3f3;
border-radius: 5px;
overflow: hidden;
margin-top: 10px;
}
#progress-bar {
height: 20px;
width: 0;
background-color: #4caf50;
border-radius: 5px;
transition: width 0.3s;
}
table {
width: 100%;
border-collapse: collapse;