diff options
-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; |