diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2008-03-24 18:22:24 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2008-03-24 18:22:24 +0100 |
commit | 5484f279ab10a68fff2fff8ceae86a11a80d5d96 (patch) | |
tree | 930f29961cde8dbe953b25ec6997aade734e0bd3 /local.css | |
parent | 8bda6434e868c549ace1eea6996c6191c641faf0 (diff) | |
download | web-5484f279ab10a68fff2fff8ceae86a11a80d5d96.tar.gz web-5484f279ab10a68fff2fff8ceae86a11a80d5d96.tar.bz2 web-5484f279ab10a68fff2fff8ceae86a11a80d5d96.zip |
local.css: More eye-candy displaying of the page footers (creation date, copyright, licensing).
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -73,6 +73,24 @@ h1, h2, h3, h4, h5, h6, table, p, ol, ul, li, div, pre, hr clear: none; } +/* Format these elements table-like with the background of the upper element + shinig through between the cells. TODO. This is currently achieved with + ``border: white''. */ +.pagedate, +.pagecopyright, +.pagelicense +{ + display: table-cell; + border-left: solid 7px white; + border-right: solid 7px white; +} + +/* Nullify the paragraph tag following ``License:''. */ +.pagelicense p +{ + display: inline; +} + .header { background-color: #f0f0f0; |