diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-11-04 17:49:57 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-11-04 17:49:57 -0500 |
commit | 54a00d12c03ab3c05ffb57f5797b96b31b6d894f (patch) | |
tree | 06adfce1a6211b4803e25b2ac646b959e2c8ec6c /docs/basic.css | |
parent | 6aa18462014e9c6327b84bf39108dd5f56db37e5 (diff) | |
parent | f7cb43fdc351904306851699a3c84cf19e64ea35 (diff) | |
download | markdown-54a00d12c03ab3c05ffb57f5797b96b31b6d894f.tar.gz markdown-54a00d12c03ab3c05ffb57f5797b96b31b6d894f.tar.bz2 markdown-54a00d12c03ab3c05ffb57f5797b96b31b6d894f.zip |
Merge branch 'master' of https://github.com/waylan/Python-Markdown2.2.1.final
Diffstat (limited to 'docs/basic.css')
-rw-r--r-- | docs/basic.css | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/docs/basic.css b/docs/basic.css index 2b47622..3f7ad80 100644 --- a/docs/basic.css +++ b/docs/basic.css @@ -246,18 +246,21 @@ div.body p.centered { /* -- tables ---------------------------------------------------------------- */ -table.docutils { +table { border: 0 solid #dce; border-collapse: collapse; } -table.docutils td, table.docutils th { +table td, table th { padding: 2px 5px 2px 5px; - border-left: 0; - background-color: #eef; } -table.docutils td p.last, table.docutils th p.last { +table td { + border: 1px solid #ddd; + background-color: #eef; +} + +table td p.last, table th p.last { margin-bottom: 0; } @@ -269,8 +272,8 @@ table.footnote td, table.footnote th { border: 0 !important; } -table.docutils th { - border-top: 1px solid #cac; +table th { + border: 1px solid #cac; background-color: #ede; } @@ -280,7 +283,7 @@ th { } th.head { - text-align: center; + text-align: center; } /* -- other body styles ----------------------------------------------------- */ @@ -371,6 +374,10 @@ pre { overflow-y: hidden; } +code { + font-size: 1.1em; +} + td.linenos pre { padding: 5px 0px; border: 0; |