diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-19 14:51:22 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-19 14:51:22 -0500 |
| commit | 336282e0dd2fa1c7f4cbcba1c92e272fac76c327 (patch) | |
| tree | 9f2c9cfb84e1d47208ac1c46781130ae9bf85783 /StoneIsland/www/css | |
| parent | d18761c6a093f3dd8bfee5fb7b91f7fb17465046 (diff) | |
store auth in localstorage, add scrollers
Diffstat (limited to 'StoneIsland/www/css')
| -rw-r--r-- | StoneIsland/www/css/nav.css | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css index 0b6ebe85..bcbc3e69 100644 --- a/StoneIsland/www/css/nav.css +++ b/StoneIsland/www/css/nav.css @@ -28,7 +28,7 @@ .nav #content { -webkit-transform: translateZ(0) translateX(249px); } -.nav .logo { +#nav .logo { background-image: url(../img/wide-logo.png); background-repeat: no-repeat; background-position: center center; @@ -240,11 +240,17 @@ #signup, #shipping, #payment, #profile, #settings { position: absolute; top: 43px; - height: -webkit-calc(100% - 43px); - height: calc(100% - 43px); + height: -webkit-calc(100% - 43px - 39px); + height: calc(100% - 43px - 39px); width: 100%; overflow: hidden; } +#story, #hub, #archive, .page { + /* these things do not have a footer */ + height: -webkit-calc(100% - 43px); + height: calc(100% - 43px); +} + h1 { text-align: center; margin: 0; |
