diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-10 17:15:14 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-10 17:15:14 +0200 |
| commit | 2fb2e09bb24340a7cc33ae30037f45125791131c (patch) | |
| tree | 45afccf7b9455ab48f7725a24bae5c28ad02ca9e /StoneIsland/platforms/android/assets/www/css/index.css | |
| parent | 6196541cf993d5a1a4b8b7f511bf7daf8f849608 (diff) | |
androidz
Diffstat (limited to 'StoneIsland/platforms/android/assets/www/css/index.css')
| -rwxr-xr-x | StoneIsland/platforms/android/assets/www/css/index.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/StoneIsland/platforms/android/assets/www/css/index.css b/StoneIsland/platforms/android/assets/www/css/index.css new file mode 100755 index 00000000..4d8e5514 --- /dev/null +++ b/StoneIsland/platforms/android/assets/www/css/index.css @@ -0,0 +1,62 @@ +* { + -webkit-tap-highlight-color: rgba(0,0,0,0); +} +body, html { + height: 100%; + width: 100%; + margin: 0px; + padding: 0px; + overflow: hidden; +} +body.loading { + opacity: 0; +} +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: #fff; + font-family: pfd, sans-serif; + font-size: 12px; + padding-top: constant(safe-area-inset-top); +} + +.loader { + z-index: 2; + width: 80px; + height: 80px; + position: absolute; + top: 50vh; + left: 50%; + margin-top: -60px; + margin-left: -40px; + display: none; +} +.loader:before { + content: ''; + border-radius: 50%; + border-top: 3px solid #999; + border-right: 3px solid transparent; + animation: loading .5s linear infinite; + -webkit-animation: loading .5s linear infinite; + width: 80px; + 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; +} |
