1
0
Fork 0

Add css for loading page routine

This commit is contained in:
Stasiek Michalski 2018-06-05 08:37:12 +02:00 committed by GitHub
parent 0381ac249e
commit fca898e766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -202,3 +202,15 @@ body, button, input, textarea {
z-index:1020
}
}
@keyframes loading-bar {
from { background-position: 0 0; }
to { background-position: 100vw 0; }
}
.loading-page {
background-image: linear-gradient(to right, #6736dd, #10c5f8, #10c5f8, #6736dd);
width: 100vw;
height: .25rem;
animation: loading-bar 3s linear infinite;
}