diff options
Diffstat (limited to 'css/index.css')
| -rw-r--r-- | css/index.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/css/index.css b/css/index.css index 0f732cf..005a017 100644 --- a/css/index.css +++ b/css/index.css @@ -49,3 +49,61 @@ body { .viewLayout { } + +.loadingbar { + position: absolute; + top: calc(50% - 6px); + left: calc(50% - 160px); + text-align: center; + width: 320px; + font-weight: bold; +} + +.loader { + width: 320px; + height: 8px; + background-image: linear-gradient(135deg, #6187f2 0%, #6187f2 25%, #5679da 25%, #5679da + 50%, #6187f2 50%, #6187f2 75%, #5679da 75%, #5679da 100%); + background-repeat: repeat; + background-position: 0px 0px; + background-size: 16px 16px; + background-clip: content-box; + animation: loading 1s linear infinite; + -o-animation: loading 1s linear infinite; + -moz-animation: loading 1s linear infinite; + -webkit-animation: loading 1s linear infinite; +} + +@keyframes loading { + from { + background-position:0px 0px; + } + to { + background-position: -16px 0px; + } +} +@-webkit-keyframes loading { + from { + background-position:0px 0px; + } + to { + background-position: -16px 0px; + } +} +@-moz-keyframes loading { + from { + background-position:0px 0px; + } + to { + background-position: -16px 0px; + } +} +@-o-keyframes loading { + from { + background-position:0px 0px; + } + to { + background-position: -16px 0px; + } +} + |
