diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-24 12:15:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-24 12:15:20 +0000 |
commit | ff14f14d29fadfc05baf0b533de803693edb06db (patch) | |
tree | 4097f23d8c60e0c06c0c6816f292d77b34a458f5 | |
parent | de19dc51296747a67389fd4bc9a9e11565f571c5 (diff) | |
download | brdo-ff14f14d29fadfc05baf0b533de803693edb06db.tar.gz brdo-ff14f14d29fadfc05baf0b533de803693edb06db.tar.bz2 |
- Some CSS improvements and better XHTML (<strong> vs <b>).
-rw-r--r-- | themes/marvin/marvin.css | 12 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 4 |
2 files changed, 9 insertions, 7 deletions
diff --git a/themes/marvin/marvin.css b/themes/marvin/marvin.css index f66760372..921f5fd8a 100644 --- a/themes/marvin/marvin.css +++ b/themes/marvin/marvin.css @@ -39,6 +39,10 @@ p { table { font-size: 1em; } +#help { + font-size: 0.9em; + margin-bottom: 1em; +} .calendar .day-today { background-color: #ccc; } @@ -79,6 +83,9 @@ table { margin: 0; padding: 5px; } +.message { + margin-bottom: 1em; +} .node h2.title { background-color: #fff; border: solid 1px #999; @@ -102,9 +109,4 @@ table { .node .links { padding: 1em; } -#forum .title { - font-weight: bold; - color: #404040; - padding-bottom: 1em; -} diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 404e692d3..13cb00e63 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -62,11 +62,11 @@ function marvin_header() { } if ($help = menu_get_active_help()) { - $output .= "<small>$help</small><hr />"; + $output .= "<div id=\"help\">$help</div>"; } if ($message = drupal_get_message()) { - $output .= "<b>". t("Status") ."</b>: ". $message->message ."<hr />"; + $output .= "<div class=\"message\"><strong>". t('Status') ."</strong>: $message->message</div>"; } return $output; |