reverse colors in progress bar

This commit is contained in:
Paul Gauthier 2023-08-11 08:43:36 -03:00
parent f1b86282ad
commit 26857e8563

View file

@ -41,12 +41,12 @@ information on how to enable the `/voice` command.
#progress-bar {
width: 100px;
height: 20px;
background-color: #f0f0f0;
background-color: #333;
margin-left: 10px;
}
#progress {
height: 100%;
background-color: #333;
background-color: #f0f0f0;
animation: progress 3s infinite;
}
@keyframes progress {