diff options
| author | Rapptz <[email protected]> | 2017-09-21 18:37:22 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-09-21 18:37:22 -0400 |
| commit | 2bfd15ba8965480b4ec462c087d155cd40750c65 (patch) | |
| tree | 9457658cb374ece05ac95153ebb33f18a543f952 /docs/_static | |
| parent | Try to build HTML5 for docs. (diff) | |
| download | discord.py-2bfd15ba8965480b4ec462c087d155cd40750c65.tar.xz discord.py-2bfd15ba8965480b4ec462c087d155cd40750c65.zip | |
Fix weird margins with unordered lists in the HTML5 output.
Diffstat (limited to 'docs/_static')
| -rw-r--r-- | docs/_static/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 65fe9ca3..85d7561a 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -243,6 +243,15 @@ div.body li { line-height: 1.4em; } +/* weird margins */ +ul > li p { + margin: 2px; +} + +li > blockquote { + margin: 10px; +} + div.admonition p.admonition-title + p { display: inline; } |