diff options
author | Rene Rivera <grafikrobot@gmail.com> | 2005-08-22 19:43:00 +0000 |
---|---|---|
committer | Rene Rivera <grafikrobot@gmail.com> | 2005-08-22 19:43:00 +0000 |
commit | 417e3cb962e169cefbb7b6258df728117e93e1b9 (patch) | |
tree | 8d7ed7be24a4addc251331257d0516fabc139897 /more/css_0 | |
parent | 9187db04b4f904dddcada44b8959717fed527a1a (diff) | |
download | boost-417e3cb962e169cefbb7b6258df728117e93e1b9.tar.gz |
Add styling for tables in section bodies.
[SVN r30634]
Diffstat (limited to 'more/css_0')
-rw-r--r-- | more/css_0/common.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/more/css_0/common.css b/more/css_0/common.css index eec8686b21..bcff9b3c74 100644 --- a/more/css_0/common.css +++ b/more/css_0/common.css @@ -197,6 +197,33 @@ a:hover { } .section-body .note .note-body { } +.section-body table { + width: 90%; + margin-left: auto; + margin-right: auto; + border-spacing: 0.5em; + border: none; +} +.section-body table caption { + margin-left: auto; + margin-right: auto; + border-bottom: 1pt solid #000000; + padding: 0em 0em 0.2em 0em; +} +.section-body table tr th { + border: none; + border-bottom: 1pt solid #000000; + text-align: left; + vertical-align: bottom; + font-weight: bold; + padding: 0em 0em 0.2em 0em; +} +.section-body table tr td { + border: none; + text-align: left; + vertical-align: top; + padding: 0em 0em 0.2em 0em; +} /* Section headings, all use the same stream op indicator style. */ #content h1, #content h2 { padding-left: 24px; |