diff options
author | marijus <mario@localhost.localdomain> | 2013-11-22 22:23:25 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-11-22 22:23:25 +0100 |
commit | 45c10d6d0a4a971446390137676fe8c00712372b (patch) | |
tree | 0253297fba552e38ca8acc5aeb6978f37dc4e5fe | |
parent | 72e0bd6b28fbb2e13a02573a053430493f97c14b (diff) | |
download | volse-hubzilla-45c10d6d0a4a971446390137676fe8c00712372b.tar.gz volse-hubzilla-45c10d6d0a4a971446390137676fe8c00712372b.tar.bz2 volse-hubzilla-45c10d6d0a4a971446390137676fe8c00712372b.zip |
use same font for textarea aswell and some simplification
-rw-r--r-- | view/theme/redbasic/css/style.css | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 72413f283..bdf1fb5fd 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -51,9 +51,12 @@ a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; } } -input[type=text], -input[type=password] { +input[type="text"], +input[type="password"], +input[type="submit"], +textarea { font-family: arial,freesans,sans-serif; + font-size: $body_font_size; } input { @@ -61,14 +64,13 @@ input { -moz-border-radius: $radiuspx; border-radius: $radiuspx; padding: 3px; - font-size: $body_font_size; } input[type="submit"] { background-color: #F0F0F0; font-weight: bold; color: #0080FF; - text-decoration: none; + text-decoration: none; } code { @@ -1456,10 +1458,11 @@ tr.mceLast { border: 1px solid #cccccc; padding: 8px; margin-right: 0px; - width: 90%; + width: 90%; -moz-border-radius: $radiuspx; border-radius: $radiuspx; } + #profile-jot-text:hover { color: #000000; } |