From c25ec9a1642d2286915221db4dd4c954c326b509 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 2 Oct 2013 16:57:40 +0100 Subject: [PATCH] Styles for tables. --- tools/htdocs/mkws-doc.css | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/tools/htdocs/mkws-doc.css b/tools/htdocs/mkws-doc.css index 2a34a60..891f1c7 100644 --- a/tools/htdocs/mkws-doc.css +++ b/tools/htdocs/mkws-doc.css @@ -34,7 +34,7 @@ h3.date { color: black } -body > p, ul, pre { +body > p, ul, pre, table { margin-left: 10%; } @@ -46,6 +46,25 @@ pre { background: #eee; } +table tr th { + color: white; + background: #68a; + font-family: Gill Sans, "Gillius ADF", Gillius, GilliusADF, Verdana, Sans-Serif; +} + +th, td { + padding: 0.2em 0.5em; + vertical-align: top; +} + +table tr:nth-child(odd) { + background: #a9c6e3; +} + +table tr:nth-child(even) { + background: #b9d4f0; +} + /* * Works with the HTML emitted by pandoc. It would better if pandoc * were to emit class names that we can use. But it doesn't. -- 1.7.10.4