diff options
| author | Rapptz <[email protected]> | 2019-06-28 02:11:22 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-06-28 02:11:22 -0400 |
| commit | a129b4bb7ec762a58b20b3a82087c97f500e17ff (patch) | |
| tree | 7371894b1fde1c9db90f22f61a99c393be68ced9 /docs/_static/style.css | |
| parent | Update Sphinx to 2.1.2 (diff) | |
| download | discord.py-a129b4bb7ec762a58b20b3a82087c97f500e17ff.tar.xz discord.py-a129b4bb7ec762a58b20b3a82087c97f500e17ff.zip | |
Make more use of screen space in the documentation.
Basically move from a 940px system to 1200px grid system.
Hopefully future DOM modifications will make this better.
Diffstat (limited to 'docs/_static/style.css')
| -rw-r--r-- | docs/_static/style.css | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 48dbac12..43966db8 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -23,7 +23,11 @@ p { div.document { margin: 10px auto 0 auto; - max-width: 940px; /* page width */ + max-width: 1200px; /* page width */ +} + +div.body { + max-width: 960px; } div.documentwrapper { @@ -32,7 +36,7 @@ div.documentwrapper { } div.bodywrapper { - margin: 0 0 0 220px; /* sidebar width */ + margin: 0 0 0 240px; /* sidebar width */ } div.body { @@ -46,7 +50,7 @@ div.footer { font-size: 14px; margin: 20px auto 30px auto; text-align: right; - max-width: 880px; + max-width: 1200px; /* page width */ } div.footer a { @@ -64,7 +68,7 @@ div.sphinxsidebar { font-size: 14px; line-height: 1.5em; margin-left: -100%; - width: 220px; /* sidebar width */ + width: 240px; /* sidebar width */ } div.sphinxsidebarwrapper { @@ -74,7 +78,7 @@ div.sphinxsidebarwrapper { /* sticky sidebar */ position: fixed; - width: 220px; /* sidebar width */ + width: 240px; /* sidebar width */ height: 90%; overflow: hidden; } |