diff options
Diffstat (limited to 'StoneIsland/platforms/ios/www/css/index.css')
| -rw-r--r-- | StoneIsland/platforms/ios/www/css/index.css | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/StoneIsland/platforms/ios/www/css/index.css b/StoneIsland/platforms/ios/www/css/index.css index db803fa9..0d855aeb 100644 --- a/StoneIsland/platforms/ios/www/css/index.css +++ b/StoneIsland/platforms/ios/www/css/index.css @@ -12,7 +12,7 @@ body { -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */ -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */ -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */ - background: #eeeeee; + background: #fff; font-family: pfd, sans-serif; font-size: 12px; } @@ -22,16 +22,16 @@ body { width: 80px; height: 80px; position: absolute; - top: 50%; + top: 50vh; left: 50%; - margin-top: -40px; + margin-top: -60px; margin-left: -40px; display: none; } .loader:before { content: ''; border-radius: 50%; - border-top: 3px solid #fff; + border-top: 3px solid #999; border-right: 3px solid transparent; animation: loading .5s linear infinite; -webkit-animation: loading .5s linear infinite; @@ -39,9 +39,20 @@ body { height: 80px; display: block; } +.loading .loader { display: block; } @keyframes loading { to {transform: rotate(360deg)} } @-webkit-keyframes loading { to {-webkit-transform: rotate(360deg)} } + +.scroll { + position: absolute; + width: 100%; +} + +.error_hilite { + color: red !important; + border-color: red !important; +} |
