From 7d3b73b71656a19ea471939169994d1151db554a Mon Sep 17 00:00:00 2001 From: zPlus <-> Date: Thu, 21 Apr 2016 16:59:03 +0200 Subject: [PATCH] Add style rules for Markdown --- css/freepost.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/css/freepost.css b/css/freepost.css index 9c52781f..395e7587 100644 --- a/css/freepost.css +++ b/css/freepost.css @@ -8,6 +8,34 @@ box-sizing: border-box; } +/* Style used to format Markdown tables */ +table +{ + background: #fff; + border-collapse: collapse; + text-align: left; +} + +table th +{ + border-bottom: 2px solid #6678b1; + color: #039; + font-weight: normal; + padding: 0 1em; +} + +table td +{ + border-bottom: 1px solid #ccc; + color: #669; + padding: .5em 1em; +} + +table tbody tr:hover td +{ + color: #009; +} + html, body { background-color: #f5f8fa;