diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-26 20:43:21 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-26 20:43:21 +0000 |
commit | 2f1e7a0b0aa81156aad34297cd41b32589b761fe (patch) | |
tree | 55db04bc1a859f285023fd65e1dfda1b2595a56c /docs | |
parent | 95189201d1d69f56a900fcb550efa13cfc4f90f5 (diff) | |
download | external_llvm-2f1e7a0b0aa81156aad34297cd41b32589b761fe.zip external_llvm-2f1e7a0b0aa81156aad34297cd41b32589b761fe.tar.gz external_llvm-2f1e7a0b0aa81156aad34297cd41b32589b761fe.tar.bz2 |
Add the default table related styles
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/llvm.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/llvm.css b/docs/llvm.css index fcde70d..06623ee 100644 --- a/docs/llvm.css +++ b/docs/llvm.css @@ -11,6 +11,11 @@ a:link img, a:visited img {border-style: none} address img { float: right; width: 88px; height: 31px; } address { clear: right; } +TR, TD { border: 2px solid gray; padding: 4pt 4pt 2pt 2pt; } +TH { border: 2px solid gray; font-weight: bold; font-size: 105%; } +TABLE { text-align: center; border: 2px solid black; + border-collapse: collapse; margin-top: 1em; margin-left: 1em; + margin-right: 1em; margin-bottom: 1em; } /* * Documentation */ @@ -58,3 +63,6 @@ address { clear: right; } padding: 0 1em 0 1em; display:table; } + +/* Left align table cell */ +.td_left { border: 2px solid gray; text-align: left; } |