diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-05-12 17:58:38 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-05-12 17:58:38 +0200 |
commit | b025130e43c86bccc289e5bd1b73488218d4f5e6 (patch) | |
tree | 045958fe279d9083f2ade202cc5622f7fd2ede02 /sass/_markdown.scss | |
parent | 71b5f2de49ad719acbeca780c6a266fa93312f5a (diff) | |
download | guide.deuxfleurs.fr-b025130e43c86bccc289e5bd1b73488218d4f5e6.tar.gz guide.deuxfleurs.fr-b025130e43c86bccc289e5bd1b73488218d4f5e6.zip |
Upgrade markdown
Diffstat (limited to 'sass/_markdown.scss')
-rw-r--r-- | sass/_markdown.scss | 25 |
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; +} |