View file public/plugins/progressbar/css/progressbar.css
#progress-bar-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 5px;
background-color: transparent;
overflow: hidden;
z-index: 1;
}
#progress-bar {
height: 100%;
width: 0;
background-color: #7336fe;
position: relative;
overflow: hidden;
animation: shine 2s infinite linear;
}
@keyframes shine {
0% {
left: -100%;
}
50% {
left: 100%;
}
100% {
left: 100%;
}
}