diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-30 21:20:24 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-30 21:20:24 -0500 |
| commit | 18925a6b8028f872323c03599b2cb1bf3e39f55d (patch) | |
| tree | cb10c32ef46b517d8c88424360665282b5a5403c /StoneIsland/www | |
| parent | 6f8efbee0a9aac63e2644f4b0c435740fcce572b (diff) | |
| parent | 3b45136a25d175cb9fb4881f671c281f70aed284 (diff) | |
Merge branch 'master' of github.com:okfocus/stone-island
Diffstat (limited to 'StoneIsland/www')
| -rw-r--r-- | StoneIsland/www/css/account.css | 6 | ||||
| -rw-r--r-- | StoneIsland/www/css/cart.css | 36 | ||||
| -rw-r--r-- | StoneIsland/www/css/products.css | 8 | ||||
| -rw-r--r-- | StoneIsland/www/index.html | 2 |
4 files changed, 46 insertions, 6 deletions
diff --git a/StoneIsland/www/css/account.css b/StoneIsland/www/css/account.css index 7d6247c2..3c04e1b1 100644 --- a/StoneIsland/www/css/account.css +++ b/StoneIsland/www/css/account.css @@ -408,7 +408,11 @@ input.switch:checked + label:after { } .container-row input:first-child { -margin-top:10px!important +margin-top:10px +} + +.container-row .half-input input { +margin-top:0px } #login .container-row input:first-child { diff --git a/StoneIsland/www/css/cart.css b/StoneIsland/www/css/cart.css index ad844701..52b2a4cb 100644 --- a/StoneIsland/www/css/cart.css +++ b/StoneIsland/www/css/cart.css @@ -128,6 +128,42 @@ padding-bottom:5px; padding-left:5px; } +.cart_item_price .remove { +display:block; +width:20px; +height:20px; +border:1px solid #d2d2d2; +float:right; +margin-bottom:10px; +position:relative; +} + +.cart_item_price .remove:after { +content:''; +width:1px; +height:22px; +background:#bbb; +position:absolute; +top:50%; +left:50%; +z-index:3; +transform-origin:top left; +transform:rotate(45deg) translateX(-50%) translateY(-50%) +} + +.cart_item_price .remove:before { +content:''; +width:1px; +height:22px; +background:#bbb; +position:absolute; +top:50%; +left:50%; +z-index:3; +transform-origin:top left; +transform:rotate(-45deg) translateX(-50%) translateY(-50%) +} + .cart_item_price .price { font-size:11px; font-weight:bold; diff --git a/StoneIsland/www/css/products.css b/StoneIsland/www/css/products.css index 4633aa0c..78d02811 100644 --- a/StoneIsland/www/css/products.css +++ b/StoneIsland/www/css/products.css @@ -63,11 +63,7 @@ } #closed .closed_store_msg { position: absolute; - top:50%; - transform:translateY(-50%); - /* bottom: 20vh; - */ background: rgba(255,255,255,0.9); padding-top: 20px; padding-bottom: 10px; @@ -235,3 +231,7 @@ clear:both; padding:13px 0; } + +#collection h1 { +background:white +} diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index a213694d..977b77cb 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -609,7 +609,7 @@ </div> </div> <div class="cart_item_price"> - <span class="remove">x Remove from cart</span> + <span class="remove"></span> <span class="price">{{price}}</span> </div> </script> |
