diff options
author | Hakim El Hattab | 2013-12-20 10:35:21 +0100 |
---|---|---|
committer | Hakim El Hattab | 2013-12-20 10:35:21 +0100 |
commit | 6428504d6d9bb897caea376f47c1807ea5305c86 (patch) | |
tree | 6bd2e94ef6f97c1b2275a588e169023ab73bf163 /css/reveal.css | |
parent | d08b000ec96ba7b9610b81d145757d2cf661bec8 (diff) | |
parent | 929ace25ee447c249c20ca29cd9d07bab637b4f7 (diff) |
merge table styles #761, tweak table padding
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/css/reveal.css b/css/reveal.css index 2696e91..5cb9966 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -363,14 +363,25 @@ body { box-sizing: border-box; } +.reveal table { + margin: auto; + border-collapse: collapse; + border-spacing: 0; +} + +.reveal table th { + font-weight: bold; +} + .reveal table th, .reveal table td { - text-align: left; - padding-right: .3em; + text-align: left; + padding: 0.2em 1em 0.2em 0; + border-bottom: 1px solid; } -.reveal table th { - font-weight: bold; +.reveal table tr:last-child td { + border-bottom: none; } .reveal sup { |