add class and keygrames for download progess animation

This commit is contained in:
MathieuG-P
2022-05-26 22:32:40 +02:00
parent d795296d0a
commit ebedee08ed
+11
View File
@@ -7,4 +7,15 @@
::-webkit-scrollbar-thumb {
border-radius: 20px;
}
.download-progress{
background-size: 500% !important;
background: linear-gradient(90deg, rgb(62, 51, 255), rgb(255, 0, 0), rgb(62, 51, 255), rgb(255, 0, 0));
animation: rainbow 2s linear 0s infinite;
}
@keyframes rainbow {
0% { background-position: 84% 0 }
100% { background-position: 0 0% }
}