diff options
| author | Rene Ae <aehtyb@gmail.com> | 2015-11-22 18:43:36 -0600 |
|---|---|---|
| committer | Rene Ae <aehtyb@gmail.com> | 2015-11-22 18:43:36 -0600 |
| commit | 2a1512a57e2eb98a2e6d95094c49a90de09019cf (patch) | |
| tree | ffef228db92e1dc1edd3559432657e492f514305 | |
| parent | f55411cad3c3ad64ca2cda33834e85f7043fa98c (diff) | |
misc css
| -rw-r--r-- | StoneIsland/www/css/blogs.css | 13 | ||||
| -rw-r--r-- | StoneIsland/www/css/nav.css | 2 | ||||
| -rw-r--r-- | StoneIsland/www/index.html | 10 |
3 files changed, 21 insertions, 4 deletions
diff --git a/StoneIsland/www/css/blogs.css b/StoneIsland/www/css/blogs.css index c8a04a1c..239e99bf 100644 --- a/StoneIsland/www/css/blogs.css +++ b/StoneIsland/www/css/blogs.css @@ -186,4 +186,17 @@ ul.links { padding:0; font-weight:bold; font-size:14px; +} + +/* NOTE: not really sure how this is going to work on the archive page + based on the pdf mockup */ + +.archive .above { + width:calc(100vw - 80px); + box-sizing:border-box; + margin:0 auto; +} + +.archive h2 { +font-size:32px }
\ No newline at end of file diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css index eb5451bc..baed216f 100644 --- a/StoneIsland/www/css/nav.css +++ b/StoneIsland/www/css/nav.css @@ -79,7 +79,7 @@ font-size: 14px; letter-spacing:1.25px; color: #bbb; - padding: 4px 0 5px 20px + padding: 4px 0 7px 20px } #nav .social { diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index c67fcdbb..894565f8 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -309,9 +309,13 @@ <div id="logout"> <div class="scroll"> <h1>LOGOUT</h1> - <span class="msg"> - You are now logged out. - </span> + <div class="container"> + <div class="container-fill"> + <span class="container-message msg"> + You are now logged out. + </span> + </div> + </div> </div> </div> |
