diff options
author | Mariano Guerra <[email protected]> | 2016-10-25 14:14:09 +0100 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | b2a6eebcf698c1828d89b37704028fdb931b0b20 (patch) | |
tree | f39aa8c8f012dc8f6059acda0704724ffe2cc723 /lib/erl_docgen/priv/css | |
parent | e23ecf88ac9c09da917c58f55ea5bd2ccfe368d3 (diff) | |
download | otp-b2a6eebcf698c1828d89b37704028fdb931b0b20.tar.gz otp-b2a6eebcf698c1828d89b37704028fdb931b0b20.tar.bz2 otp-b2a6eebcf698c1828d89b37704028fdb931b0b20.zip |
reduce max-width on p and #content to 60em
Diffstat (limited to 'lib/erl_docgen/priv/css')
-rw-r--r-- | lib/erl_docgen/priv/css/otp_doc.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/erl_docgen/priv/css/otp_doc.css b/lib/erl_docgen/priv/css/otp_doc.css index 2966b6c0b4..cde5d13271 100644 --- a/lib/erl_docgen/priv/css/otp_doc.css +++ b/lib/erl_docgen/priv/css/otp_doc.css @@ -13,7 +13,7 @@ body { font-size: 16px; } -p { max-width: 80em } +p { max-width: 60em } .header { background: #222; color: #fefefe } .top { background: #efe } @@ -47,7 +47,7 @@ a:visited { color: #1b6ec2; text-decoration: none } #content { margin-left: 340px; /* set left value to WidthOfFrameDiv */ - max-width: 80em; + max-width: 60em; } .frontpage |