diff options
author | Christian Fehmer | 2015-02-28 19:15:14 +0100 |
---|---|---|
committer | Christian Fehmer | 2015-02-28 19:15:14 +0100 |
commit | 3ead7d4eb573b7c9ef75dc00926ac63bad873e23 (patch) | |
tree | f4cda1390d12ae0812bc977c03a4ac5bbb5993b8 /css/theme/black.css | |
parent | 53b9dbc65431882b9f316b4fbfe5d6cece928ad1 (diff) |
Markdown table column alignment #1050
The alignment information were already in the generated html.
The css was the only thing missing, so I added it.
Diffstat (limited to 'css/theme/black.css')
-rw-r--r-- | css/theme/black.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/css/theme/black.css b/css/theme/black.css index 7d3bee4..ee2ead8 100644 --- a/css/theme/black.css +++ b/css/theme/black.css @@ -159,6 +159,12 @@ body { padding: 0.2em 0.5em 0.2em 0.5em; border-bottom: 1px solid; } +.reveal table th[align="center"], .reveal table td[align="center"] { + text-align: center; } + +.reveal table th[align="right"], .reveal table td[align="right"] { + text-align: right; } + .reveal table tr:last-child td { border-bottom: none; } |