forked from lda/telodendria
Don't have the synopsis table be styled like real tables.
This commit is contained in:
parent
d61770c772
commit
8db83fe1fc
1 changed files with 12 additions and 0 deletions
|
@ -105,6 +105,7 @@ table {
|
||||||
border-spacing: 0px;
|
border-spacing: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
border: 1px solid var(--color-table-border);
|
border: 1px solid var(--color-table-border);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -115,6 +116,17 @@ tr:nth-child(even) {
|
||||||
background-color: var(--color-table-accent);
|
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! */
|
/* Thanks Jonah! */
|
||||||
#logo {
|
#logo {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in a new issue