summaryrefslogtreecommitdiff
path: root/StoneIsland/www/css
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-11-25 21:55:53 -0500
committerJules Laplace <jules@okfoc.us>2015-11-25 21:55:53 -0500
commitec87912a5ca1c0d6862b07012fdbbdf2d4b4f86a (patch)
treecce3b7863883bc63b0d023b58a7d7942b2edef43 /StoneIsland/www/css
parent7c05614815f987d3f34416cc7d981d1907939eb5 (diff)
parent165b16eb4578b33bb80e975eb69bf3d67afb4d82 (diff)
Merge branch 'master' of github.com:okfocus/stone-island
Diffstat (limited to 'StoneIsland/www/css')
-rw-r--r--StoneIsland/www/css/cart.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/StoneIsland/www/css/cart.css b/StoneIsland/www/css/cart.css
index ff331418..6467e8d3 100644
--- a/StoneIsland/www/css/cart.css
+++ b/StoneIsland/www/css/cart.css
@@ -191,4 +191,59 @@ font-weight:bold
.cart-summary-row:last-child {
color:#000;
+}
+
+.dropdown-wrapper {
+ position:relative;
+ text-align:right;
+ width:calc(100vw - 10px);
+ margin:0 auto;
+ box-sizing:border-box;
+
+}
+
+.dropdown-wrapper .add_edit {
+ padding:10px;
+ letter-spacing:0.5px;
+ font-size:12px;
+ color:#a9a9a9;
+ box-sizing:border-box;
+}
+
+.dropdown-wrapper .dropdown {
+ font-size:14px;
+ box-sizing:border-box;
+ align-items: center;
+ text-align: center;
+ padding:10px 0;
+ border:1px solid #a9a9a9;
+ position:relative;
+}
+
+.dropdown-wrapper .dropdown::before {
+ content:'';
+ box-sizing:border-box;
+ right:25px;
+ width:1px;
+ top:50%;
+ transform:translateY(-50%) rotate(45deg);
+ height:12px;
+ background:#a9a9a9;
+ position:absolute;
+ z-index:999;
+ transform-origin:bottom left;
+}
+
+.dropdown-wrapper .dropdown::after {
+ content:'';
+ box-sizing:border-box;
+ right:25px;
+ width:1px;
+ top:50%;
+ transform:translateY(-50%) rotate(-45deg);
+ transform-origin:bottom right;
+ height:12px;
+ background:#a9a9a9;
+ position:absolute;
+ z-index:999;
} \ No newline at end of file