diff options
author | Samuel Thibault <sthibault@debian.org> | 2015-03-28 09:11:07 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2015-03-28 09:11:07 +0000 |
commit | b90bf1b22d2c16c4159710e0be64f6a9c8ce4735 (patch) | |
tree | 238f81e9e4bb318244467ce6dd3ce2053a5ca33f /build | |
parent | 121bf218b6ad9bd391ab89e2937211e35178138c (diff) | |
download | installation-guide-b90bf1b22d2c16c4159710e0be64f6a9c8ce4735.zip |
Improve html table aspect.
Diffstat (limited to 'build')
-rw-r--r-- | build/stylesheets/install.css | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/build/stylesheets/install.css b/build/stylesheets/install.css index 12bd6b082..ec40e5ad3 100644 --- a/build/stylesheets/install.css +++ b/build/stylesheets/install.css @@ -116,27 +116,23 @@ h2, h3, h4, h5, h6 { /* table in content */ .informaltable table, .table-contents table { - border: 1px solid #AAAAAA; + border-collapse: collapse; } .informaltable table th, .table-contents table th { - border-width: 0; background-color: #C70036; -} -/* -.informaltable table td, .table-contents table { - border-width: 0; + border: 1px solid black; + padding: 0.2em 0.5em 0.2em 0.5em; } -.informaltable tbody tr:nth-child(even), .table-contents table tr:nth-child(even){ -background-color:#DDDDDD; +.informaltable table td, .table-contents table td { + border: 1px solid black; + padding: 0.2em 0.5em 0.2em 0.5em; } -.informaltable tbody tr:hover, .table-contents table tr:hover { - background-color:#666666; - color: #FFFFFF; +.informaltable table th:hover, .table-contents table th:hover { + color: white; } -*/ /* Terminal examples */ |