diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2013-09-08 09:41:58 -0700 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2013-09-08 09:41:58 -0700 | 
| commit | af6f25a8b2d6544e375e01135ac29f55dbae2012 (patch) | |
| tree | 6f29039c6db3002179b449c89ba2a1c9a6acd118 /web | |
| parent | 8548d6f99c3ab540a3e98c21d0c03a9a0b90fee0 (diff) | |
Fixing Brad's UX comments.
* Hero Graphic
* Google fonts
* Stylized login page
* Vertical alignment on tool tip (noticebar)
* Logo links to home or account.
Diffstat (limited to 'web')
| -rw-r--r-- | web/style.css | 21 | 
1 files changed, 19 insertions, 2 deletions
diff --git a/web/style.css b/web/style.css index 96ba12a..1d82a49 100644 --- a/web/style.css +++ b/web/style.css @@ -1,5 +1,5 @@  html, body { -    font-family: sans-serif; +    font-family: 'Arvo', serif;      font-size: 90%;      margin: 0;      height: 100%; @@ -15,6 +15,19 @@ a:hover {      color: #9ace00;  } +input[type="text"], input[type="password"] { +    background: #F5F5F5; +    border: solid 1px #BDBDBD; +    padding: 5px; +    width: 40%; +} + +label { +    text-align: right; +    width: 10%; +    display: inline-block; +} +  #notfooter {      min-height: 100%;      height: auto !important; @@ -39,6 +52,10 @@ header h1 {      color: #7bc043;  } +header h1 a { +    color: #7bc043; +} +  header h1 img {      vertical-align: middle;  } @@ -111,8 +128,8 @@ nav.primary a.current {  }  #noticebox img.icon { -    float: left;      margin-right: 2em; +    vertical-align: middle;  }  #noticebox .close {  | 
