diff options
author | Mariano Guerra <[email protected]> | 2016-10-21 16:41:10 +0100 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | 224a1977ac4efc77078adc8490a396805a3dd270 (patch) | |
tree | 55c9e4bb0c1a84e6955c2ef06e244ca608e1e072 /lib/erl_docgen/priv/css | |
parent | 298a7e6af185fecc01063a53e35ced4d5a00484a (diff) | |
download | otp-224a1977ac4efc77078adc8490a396805a3dd270.tar.gz otp-224a1977ac4efc77078adc8490a396805a3dd270.tar.bz2 otp-224a1977ac4efc77078adc8490a396805a3dd270.zip |
improve table styling
Diffstat (limited to 'lib/erl_docgen/priv/css')
-rw-r--r-- | lib/erl_docgen/priv/css/otp_doc.css | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/lib/erl_docgen/priv/css/otp_doc.css b/lib/erl_docgen/priv/css/otp_doc.css index b1d18b09d5..1ff9bcade2 100644 --- a/lib/erl_docgen/priv/css/otp_doc.css +++ b/lib/erl_docgen/priv/css/otp_doc.css @@ -69,7 +69,7 @@ span.code { font-family: mono, Courier, monospace; white-space: pre; font .note, .warning, .do, .dont { border: 1px solid #495057; - margin: 1em 3em; + margin: 1em 0; } .note .label { background-color: #2b8a3e; @@ -161,3 +161,46 @@ footer { } margin: 2em 0; font-size: 1.5em; } + +.doc-table-wrapper{ + width: 100%; +} + +.doc-table{ + min-width: 50%; + margin: 0 auto; +} + +.doc-table-caption{ + margin-top: 1em; + font-style: italic; + text-align: center; +} + +table { + border-collapse: collapse; + min-width: 50%; + margin: 1em; +} + +table, th, td { + border: 1px solid #666; +} + +th, td { + padding: 0.5em; + text-align: left; +} + +tr:hover { + background-color: #f5f5f5; +} + +tr:nth-child(even) { + background-color: #f2f2f2; +} + +th { + background-color: #777; + color: #fefefe; +} |