Don't have the synopsis table be styled like real tables.

This commit is contained in:
Jordan Bancino 2022-11-19 23:22:21 +00:00
parent d61770c772
commit 8db83fe1fc
1 changed files with 12 additions and 0 deletions

View File

@ -105,6 +105,7 @@ table {
border-spacing: 0px;
}
td, th {
border: 1px solid var(--color-table-border);
text-align: left;
@ -115,6 +116,17 @@ tr:nth-child(even) {
background-color: var(--color-table-accent);
}
/* The above styles are nice for real tables, but not for
* a man page synopsis. */
.Nm {
width: fit-content;
}
.Nm td, .Nm th {
border: none;
}
/* Thanks Jonah! */
#logo {
display: block;