diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-07-14 01:23:00 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-07-14 01:23:00 +0200 |
| commit | e7df26edfb920e39bd45bef40830c8e6f2e88ed3 (patch) | |
| tree | d4961af3a2aa8df7d15342df6008ec4ceb754f6b | |
| parent | eb0693bda1edce80569ee15c1543a7a897c8f359 (diff) | |
fix
| -rwxr-xr-x | StoneIsland/www/css/cart.css | 15 | ||||
| -rwxr-xr-x | StoneIsland/www/index.html | 15 |
2 files changed, 20 insertions, 10 deletions
diff --git a/StoneIsland/www/css/cart.css b/StoneIsland/www/css/cart.css index e66324b7..1a68099d 100755 --- a/StoneIsland/www/css/cart.css +++ b/StoneIsland/www/css/cart.css @@ -113,7 +113,12 @@ #cart h3 { padding-left: 5px; - font-size:12px; + font-size:16px; + height: 48px; + display: flex; + justify-content: flex-start; + align-items: center; + font-size: 16px; } .cart_item_row { @@ -298,9 +303,10 @@ color:#000; position:relative; text-align:right; width:calc(100vw - 10px); - margin:0 auto; + margin:0 auto 20px 0; box-sizing:border-box; - + display: flex; + flex-direction: column; } .dropdown-wrapper .add_edit { @@ -359,6 +365,9 @@ color:#000; margin-left:5px; margin-bottom:6px; } +#cart .cc_confirm h3 { + justify-content: center +} #cart_shipping input:first-child { margin-top:10px diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index 022c931e..76cedaa5 100755 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -113,13 +113,6 @@ <span role="link" aria-label="View cart" class="cart_rapper"><span class="cart"><span role="display" class="cart_count">0</span></span></span> </div> - <div id="footer"> - <!-- 'Cancel' i think needs to go BACK in the navigation.. rather than jumping to the home screen --> - <div role="button" class="cancel">CANCEL</div> - <div role="button" class="ok">OK</div> - </div> - - <!-- BLOGS ================================================ --> <div id="story"> @@ -1041,6 +1034,12 @@ </div> + <div id="footer"> + <!-- 'Cancel' i think needs to go BACK in the navigation.. rather than jumping to the home screen --> + <div role="button" class="cancel">CANCEL</div> + <div role="button" class="ok">OK</div> + </div> + <div id="curtain"> <div class="loader"></div> </div> @@ -1084,6 +1083,8 @@ </div> +<!-- Forms --> + <script type="text/html" id="creditcard_template"> <label for="creditcard_id">Credit Card Number</label> <input type="number" name="Number" aria-placeholder="CREDIT CARD NUMBER" required> |
