From: martin f. krafft Date: Tue, 5 Nov 2019 10:31:23 +0000 (+1300) Subject: styling of tables X-Git-Url: https://git.madduck.net/etc/mutt.git/commitdiff_plain/0e22b3603ff0a4f8c672ff9585b32ccb2ee4c424 styling of tables --- diff --git a/.mutt/markdown2html b/.mutt/markdown2html index 2813b37..7853ae5 100755 --- a/.mutt/markdown2html +++ b/.mutt/markdown2html @@ -70,7 +70,17 @@ DEFAULT_CSS += ''' white-space: pre; margin: 1em 0 0 0; font-size: 80%; -}''' +} +table, th, td { + border-collapse: collapse; + border: 1px solid #999; +} +th, td { padding: 0.5em; } +.header { + background: #eee; +} +.even { background: #eee; } +''' STYLESHEET = os.path.join(os.path.expanduser('~/.mutt'), 'markdown2html.css')