home » zplus/freepost.git
Author zPlus <-> 2016-04-21 14:59:03
Committer zPlus <-> 2016-04-21 14:59:03
Commit 7d3b73b (patch)
Tree 5b58048
Parent(s)

Add style rules for Markdown </table>


commits diff: c20deea..7d3b73b
1 file changed, 28 insertions, 0 deletionsdownload


Diffstat
-rw-r--r-- css/freepost.css 28

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+28/-0 M   css/freepost.css
index 9c52781..395e758
old size: 9K - new size: 10K
@@ -8,6 +8,34 @@
8 8 box-sizing: border-box;
9 9 }
10 10
11 + /* Style used to format Markdown tables */
12 + table
13 + {
14 + background: #fff;
15 + border-collapse: collapse;
16 + text-align: left;
17 + }
18 +
19 + table th
20 + {
21 + border-bottom: 2px solid #6678b1;
22 + color: #039;
23 + font-weight: normal;
24 + padding: 0 1em;
25 + }
26 +
27 + table td
28 + {
29 + border-bottom: 1px solid #ccc;
30 + color: #669;
31 + padding: .5em 1em;
32 + }
33 +
34 + table tbody tr:hover td
35 + {
36 + color: #009;
37 + }
38 +
11 39 html, body
12 40 {
13 41 background-color: #f5f8fa;