diff --git a/site/vue/css/style.css b/site/vue/css/style.css index fbc10d0..7a1908b 100644 --- a/site/vue/css/style.css +++ b/site/vue/css/style.css @@ -575,4 +575,25 @@ input[type=color] { width: 99%; display: none; z-index: 80; +} + +@keyframes progressbar-countdown { + 0% { + width: 0%; + } + + 100% { + width: 95%; + } +} + +.progress_bar { + height: 10px; + margin: 20px; + animation: progressbar-countdown; + animation-duration: 40s; + animation-iteration-count: 1; + animation-fill-mode: forwards; + animation-play-state: paused; + animation-timing-function: linear; } \ No newline at end of file diff --git a/site/vue/index.html b/site/vue/index.html index 484cfa8..62593a5 100644 --- a/site/vue/index.html +++ b/site/vue/index.html @@ -116,7 +116,7 @@