docs: basic styles for tables

This is a cosmetic fix for PR #3921 (109aa2d489).
Discussion on #3563
This commit is contained in:
Mikk Andresen 2020-04-27 18:28:27 +03:00 committed by muxator
parent 9abc70e389
commit c074dfeff2
1 changed files with 16 additions and 1 deletions

View File

@ -44,4 +44,19 @@ a:hover {
display: block;
overflow: auto;
padding: 5px;
}
}
table, th, td {
text-align: left;
border: 1px solid gray;
border-collapse: collapse;
}
th {
padding: 0.5em;
background: #EEE;
}
td {
padding: 0.5em;
}