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 { #progress-bar {
width: 100px; width: 100px;
height: 20px; height: 20px;
background-color: #f0f0f0; background-color: #333;
margin-left: 10px; margin-left: 10px;
} }
#progress { #progress {
height: 100%; height: 100%;
background-color: #333; background-color: #f0f0f0;
animation: progress 3s infinite; animation: progress 3s infinite;
} }
@keyframes progress { @keyframes progress {