diff options
Diffstat (limited to 'StoneIsland/www/css/index.css')
| -rw-r--r-- | StoneIsland/www/css/index.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/StoneIsland/www/css/index.css b/StoneIsland/www/css/index.css index 161c41a6..3c2a4d10 100644 --- a/StoneIsland/www/css/index.css +++ b/StoneIsland/www/css/index.css @@ -16,3 +16,29 @@ body { font-family: pfd, sans-serif; font-size: 12px; } + +.loader { + z-index: 2; + width: 80px; + height: 80px; + position: absolute; + top: 50%; + left: 50%; + margin-top: -40px; + margin-left: -40px; + display: none; +} +.loader:before { + content: ''; + border-radius: 50%; + border-top: 3px solid #fff; + border-right: 3px solid transparent; + animation: loading .5s linear infinite; + -webkit-animation: loading .5s linear infinite; +} +@keyframes loading { + to {transform: rotate(360deg)} +} +@-webkit-keyframes loading { + to {-webkit-transform: rotate(360deg)} +}
\ No newline at end of file |
