/* latex-tables — HTML rendering of LaTeX tabular environments */ .ltx-table { border-collapse: collapse; margin: 1rem auto; max-width: 100%; overflow-x: auto; display: table; } .ltx-table th, .ltx-table td { padding: 0.35em 0.7em; vertical-align: top; line-height: 1.4; } .ltx-table th { font-weight: 600; } /* alignment */ .ltx-l { text-align: left; } .ltx-c { text-align: center; } .ltx-r { text-align: right; } /* vertical rules (from | in the column spec) */ .ltx-bl { border-left: 1px solid currentColor; } .ltx-br { border-right: 1px solid currentColor; } /* horizontal rules: t = above the row, b = below. 1 = \hline / \midrule / \cline, 2 = booktabs \toprule / \bottomrule, d = doubled rule (\hline\hline) */ .ltx-t1 { border-top: 1px solid currentColor; } .ltx-b1 { border-bottom: 1px solid currentColor; } .ltx-t2 { border-top: 1.6px solid currentColor; } .ltx-b2 { border-bottom: 1.6px solid currentColor; } .ltx-td { border-top: 3px double currentColor; } .ltx-bd { border-bottom: 3px double currentColor; } /* keep wide tables usable on narrow screens */ @media (max-width: 700px) { .ltx-table { font-size: 0.9em; } .ltx-table th, .ltx-table td { padding: 0.25em 0.45em; } }