diff options
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 { |