summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/css
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/www/css')
-rwxr-xr-xStoneIsland/platforms/ios/www/css/account.css16
-rwxr-xr-xStoneIsland/platforms/ios/www/css/blogs.css1
-rwxr-xr-xStoneIsland/platforms/ios/www/css/nav.css50
3 files changed, 62 insertions, 5 deletions
diff --git a/StoneIsland/platforms/ios/www/css/account.css b/StoneIsland/platforms/ios/www/css/account.css
index b3270a32..973f3d2c 100755
--- a/StoneIsland/platforms/ios/www/css/account.css
+++ b/StoneIsland/platforms/ios/www/css/account.css
@@ -155,7 +155,6 @@ input[type=text], input[type=password], input[type=number], input[type=email] {
display: block;
margin-top: 4px;
width: calc(100vw - 10px);
- border: 1px solid #a9a9a9;
overflow: auto;
}
@@ -165,7 +164,8 @@ input[type=text], input[type=password], input[type=number], input[type=email] {
border:none;
box-sizing: border-box;
float: left;
- width: 50%;
+ border: 1px solid #a9a9a9;
+ width: 50%;
}
.half-input > input:first-child {
@@ -307,7 +307,6 @@ input.switch:checked + label:after {
}
#cart .container-fill,
-#payment .container-fill,
#shipping .container-fill {
margin-bottom: 50vh;
}
@@ -475,11 +474,15 @@ input.switch:checked + label:after {
.half-input .select-wrapper {
width: 50%;
border: 0;
- margin-top: -1px;
+ margin-top: 0px;
float: left;
+ box-sizing: border-box;
+ border: 1px solid #a9a9a9;
+ border-left: 0px;
}
+
.half-input .select-wrapper span {
- top: 9px;
+ top: 8px;
color: #aaa;
}
.select-wrapper [type=date] {
@@ -516,8 +519,11 @@ input.switch:checked + label:after {
.country-wrapper-static {
text-align: center;
color: #a9a9a9;
+ border: 1px solid;
padding-top: 9px;
font-size: 14px;
+ height: 35px;
+ box-sizing: border-box;
}
.container-row input:first-child {
diff --git a/StoneIsland/platforms/ios/www/css/blogs.css b/StoneIsland/platforms/ios/www/css/blogs.css
index 4823fbef..bf5ab68f 100755
--- a/StoneIsland/platforms/ios/www/css/blogs.css
+++ b/StoneIsland/platforms/ios/www/css/blogs.css
@@ -43,6 +43,7 @@ animation: mfadein 0.6s;
/* FAQ */
.privacy #privacy { display: block }
+.account_terms #account_terms { display: block }
.terms #terms { display: block }
.returns #returns { display: block }
.care #care { display: block }
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 */