diff --git a/site/style.css b/site/style.css index 564c578..882125b 100644 --- a/site/style.css +++ b/site/style.css @@ -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;