aboutsummaryrefslogtreecommitdiff
path: root/sass/_markdown.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/_markdown.scss')
-rw-r--r--sass/_markdown.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/sass/_markdown.scss b/sass/_markdown.scss
index 262c030..1318594 100644
--- a/sass/_markdown.scss
+++ b/sass/_markdown.scss
@@ -43,3 +43,28 @@
background-color: #f2f1f0;
padding: 0 20px;
}
+
+.content table {
+ border-collapse: collapse;
+ font-family: Tahoma, Geneva, sans-serif;
+}
+.content table td {
+ padding: 15px;
+}
+.content table thead th {
+ background-color: var(--primary-color);
+ color: #ffffff;
+ font-weight: bold;
+ font-size: 13px;
+ border: 1px solid var(--primary-color);
+}
+.content table tbody td {
+ color: #636363;
+ border: 1px solid #dddfe1;
+}
+.content table tbody tr {
+ background-color: #f9fafb;
+}
+.content table tbody tr:nth-child(odd) {
+ background-color: #ffffff;
+}