diff options
Diffstat (limited to 'StoneIsland/platforms/android/assets/www/css/nav.css')
| -rwxr-xr-x | StoneIsland/platforms/android/assets/www/css/nav.css | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/StoneIsland/platforms/android/assets/www/css/nav.css b/StoneIsland/platforms/android/assets/www/css/nav.css index a2448b0e..b7002f20 100755 --- a/StoneIsland/platforms/android/assets/www/css/nav.css +++ b/StoneIsland/platforms/android/assets/www/css/nav.css @@ -314,11 +314,68 @@ padding-bottom:0px; #curtain.dark { background: rgba(72,72,72,0.8); } +#curtain.opaque { + background: #ddd; +} #curtain.loading .loader { display: block; } +/* MODAL */ + +.modal { + position: absolute; + top: 50%; left: 50%; + transform: translate3d(-50%, -50%, 0); + max-width: 95vw; + background: white; + box-sizing: border-box; + padding: 40px 20px; + box-shadow: 0 2px 2px #ddd; + opacity: 0; + pointer-events: none; + transition: all 0.2s; +} +.modal.visible { + opacity: 1; + pointer-events: auto; +} + +/* CONSENT MODAL */ +#consent_modal { + display: none; + z-index: 2; +} +#consent_modal a { + color: black; +} +.modal button { + font-family: pfd, sans-serif; + font-size: 12px; + padding: 10px; + box-sizing: border-box; + margin: 0; + border: 1px solid; + color: black; + background: white; + margin-top: 20px; + width: 100px; +} +#consent_proceed { + display: inline-block; + background: black; + color: white; + border-color: black; +} +#consent_error { + opacity: 0; + color: red; + transition: 0.3s all; +} +#consent_error.visible { + opacity: 1; +} /* SELECTOR */ #selector { |
