diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2008-11-12 15:06:38 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2008-11-12 15:06:38 +0100 |
commit | 2b109a703c14fc64ddfdddc262f7a296bad56c1f (patch) | |
tree | 15c5ce77a7c689f80ce4f56930a11d9630eb8be1 /local.css | |
parent | 79bbf399ff5d6a9ae966f0a9b2795fb029c0b79b (diff) | |
download | web-2b109a703c14fc64ddfdddc262f7a296bad56c1f.tar.gz web-2b109a703c14fc64ddfdddc262f7a296bad56c1f.tar.bz2 web-2b109a703c14fc64ddfdddc262f7a296bad56c1f.zip |
Ensure that news items don't run into each other (thanks Arne for noting this problem). Add some space between news items. Remove borders.
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -132,12 +132,11 @@ pre /* News items on the front page. */ .newsitem { - border: 1px solid black; + padding-top: 2px; } .newsitem + .newsitem { - /* TODO: Why doesn't this work as I want it to work? */ -// border-top-style: none; + clear: left; } .newsitemheader { @@ -159,6 +158,13 @@ pre { display: block; } +.newsitemcontent +{ + /* TODO. Why is this needed to make the floating text appear on the same + vertical height as is the item's title? */ + margin-top: -10px; +} + .table_style_1 { |