summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/css/nav.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-07-24 18:41:15 +0200
committerJules Laplace <julescarbon@gmail.com>2018-07-24 18:41:15 +0200
commit28553fe863564b44f810eacc0ce3f45608346297 (patch)
tree057febb8a68355257048ebb1eae5b5a44b2b6341 /StoneIsland/platforms/ios/www/css/nav.css
parentb6774fedca6a535e9f863d4bb72d87f46c47a59b (diff)
build the thing....
Diffstat (limited to 'StoneIsland/platforms/ios/www/css/nav.css')
-rwxr-xr-xStoneIsland/platforms/ios/www/css/nav.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/css/nav.css b/StoneIsland/platforms/ios/www/css/nav.css
index a2448b0e..77bc5487 100755
--- a/StoneIsland/platforms/ios/www/css/nav.css
+++ b/StoneIsland/platforms/ios/www/css/nav.css
@@ -314,10 +314,60 @@ 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;
+}
/* SELECTOR */