diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-16 20:27:14 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-16 20:27:14 -0400 |
| commit | 7eb327b13bd9ee241f47f22ba1c3db3c90e8e942 (patch) | |
| tree | 0a47937e7e0785ff7f4cd925193ed385ade97567 /StoneIsland/www/css | |
| parent | 14b92bdc7fb69a5751a7e029537e910cb7345262 (diff) | |
populate collectionview and productview
Diffstat (limited to 'StoneIsland/www/css')
| -rw-r--r-- | StoneIsland/www/css/blogs.css | 3 | ||||
| -rw-r--r-- | StoneIsland/www/css/nav.css | 2 | ||||
| -rw-r--r-- | StoneIsland/www/css/products.css | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/StoneIsland/www/css/blogs.css b/StoneIsland/www/css/blogs.css index 5f0641c2..ec945f65 100644 --- a/StoneIsland/www/css/blogs.css +++ b/StoneIsland/www/css/blogs.css @@ -1,14 +1,17 @@ .story #story { display: block } +#content.story { overflow: scroll } #story { display: none; } .hub #hub { display: block } +#content.hub { overflow: scroll } #hub { display: none; } .archive #archive { display: block } +#content.archive { overflow: scroll } #archive { display: none; }
\ No newline at end of file diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css index 25f4c3bb..8842e6e1 100644 --- a/StoneIsland/www/css/nav.css +++ b/StoneIsland/www/css/nav.css @@ -16,13 +16,11 @@ -webkit-transform: translateZ(0) translateX(0px); -webkit-transition: -webkit-transform 0.3s; } -/* .ios #nav, .ios #content { top: 20px; height: -webkit-calc(100% - 20px); } - */ .nav #nav { -webkit-transform: translateZ(0) translateX(0); } diff --git a/StoneIsland/www/css/products.css b/StoneIsland/www/css/products.css index ec175386..bac0d116 100644 --- a/StoneIsland/www/css/products.css +++ b/StoneIsland/www/css/products.css @@ -1,5 +1,6 @@ .collection #collection { display: block } .collection #footer .filter { display: block } +#content.collection { overflow: scroll } #collection { display: none; } @@ -7,6 +8,7 @@ .product #product { display: block } .product #footer .buynow { display: block } .product #footer .addtocart { display: block } +#content.product { overflow: scroll } #product { display: none; } |
