docs: basic styles for tables

This is a cosmetic fix for PR #3921 (109aa2d489).
Discussion on #3563
pull/3969/head
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

@ -45,3 +45,18 @@ a:hover {
overflow: auto; overflow: auto;
padding: 5px; 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;
}