diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-03-11 04:09:42 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-03-11 04:09:42 +0100 |
commit | 7aede1b2a5241e241e40ebf4236c4ed93211955d (patch) | |
tree | a34443b1bb94b501fdbd0bef89038307a75fe30b /src | |
parent | a699e2e08164f615bbdae2a11d08099efea5a59d (diff) | |
download | website-7aede1b2a5241e241e40ebf4236c4ed93211955d.tar.xz |
style: workaround table column width in docutils
Diffstat (limited to 'src')
-rw-r--r-- | src/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css index 706e632..63e7d7b 100644 --- a/src/style.css +++ b/src/style.css @@ -119,6 +119,12 @@ table { border: 2px solid gray; border-collapse: collapse; } + +/* Work around for docutils adding colgroups */ +table col { + width: auto; +} + th, td { width: 16%; font-size: 14px; |