diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-12 17:24:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-12 17:24:06 +0000 |
commit | 1a2576036b3377ec83a08b7238f59dc474053543 (patch) | |
tree | b425f4f254ae6f148e44c1f37e47ac3093b9bdc9 /themes | |
parent | 97c4c603d56799e674d3b5c81ce262d6c66cd518 (diff) | |
download | brdo-1a2576036b3377ec83a08b7238f59dc474053543.tar.gz brdo-1a2576036b3377ec83a08b7238f59dc474053543.tar.bz2 |
- Bugfix: charset fixes/clean-up. Patch #52 by Al.
- Improvement: renamed some theme functions of the forum module for sake of consistency/readability. Patch #2 by Kristjan.
- Improvement: usability improvements to the Xtemplate theme. Patch #3 by Kristjan.
- Improvement: CSS'ified the book module pages. Patch #3 by Al. (I simplified the "l
ocation" part. Al's approach gave you a bit more power but I'm not sure anyone wants
to change that. Besides, this will change as soon we integrate the menu system so I kept it easy for now.)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/xtemplate/xtemplate.css | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/themes/xtemplate/xtemplate.css b/themes/xtemplate/xtemplate.css index da7d1f247..0a5ae31c7 100644 --- a/themes/xtemplate/xtemplate.css +++ b/themes/xtemplate/xtemplate.css @@ -27,13 +27,15 @@ a { font-weight: normal; } a:link { - color: #378CE0; + color: #069; + text-decoration: underline; } a:visited { - color: #036; + color: #000; + text-decoration: underline; } a:hover { - text-decoration: underline; + color: #39C; } p { margin: 0 0 1em 0; @@ -97,7 +99,7 @@ img { #main { padding: 1em; } -#message, #main .node .content { +#message, #main .node .content, .comment .content { line-height: 1.4; } #sidebar { @@ -113,9 +115,12 @@ img { table { font-size: 1em; } -.node, .block, .box { +.block, .box { padding: 0 0 1.5em 0; } +.node { + padding: 0 0 2.5em 0; +} .comment { border: 1px solid #ccc; padding: 1.5em 1.5em 1.5em 1.5em; @@ -149,7 +154,7 @@ table { padding-top: 0.5em; } .node .links, .comment .links { - padding-top: 1em; + padding-top: 0.5em; color: #999; } .node .links a, .comment .links a { @@ -214,6 +219,9 @@ table { pre { background-color: #eee; padding: 0.75em 1.5em; - font-size: 11px; + font-size: 12px; border: 1px solid #ddd; } +.content li { + padding-bottom: 0.25em; +} |