diff options
author | Mariano Guerra <[email protected]> | 2016-10-21 12:40:13 +0100 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | ee67e6bc578a421c691d7fce0a1aa87f9157dca7 (patch) | |
tree | 3950daf90c5db5e717daf22b2bd3e5230b01970a | |
parent | ee1ad99648316f4dc15d872804dfa52990e0240f (diff) | |
download | otp-ee67e6bc578a421c691d7fce0a1aa87f9157dca7.tar.gz otp-ee67e6bc578a421c691d7fce0a1aa87f9157dca7.tar.bz2 otp-ee67e6bc578a421c691d7fce0a1aa87f9157dca7.zip |
don't use pure black and white, change base font
-rw-r--r-- | lib/erl_docgen/priv/css/otp_doc.css | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/erl_docgen/priv/css/otp_doc.css b/lib/erl_docgen/priv/css/otp_doc.css index 219740a557..fdcd2bca25 100644 --- a/lib/erl_docgen/priv/css/otp_doc.css +++ b/lib/erl_docgen/priv/css/otp_doc.css @@ -1,7 +1,8 @@ /* standard OTP style sheet */ body { - background: white; - font-family: Verdana, Arial, Helvetica, sans-serif; + background: #fefefe; + color: #3E4349; + font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif; margin: 0; padding: 0; border: 0; @@ -14,7 +15,7 @@ th { font-family: Verdana, Arial, Helvetica, sans-serif } td { font-family: Verdana, Arial, Helvetica, sans-serif } p { font-family: Verdana, Arial, Helvetica, sans-serif } -.header { background: #222; color: #fff } +.header { background: #222; color: #fefefe } .top { background: #efe } .otp { background: #efe } .erlang { background: #ffe } @@ -28,7 +29,7 @@ a:visited { color: blue; text-decoration: none } #container { width: 100%; margin: 0; - background-color: #fff; + background-color: #fefefe; } #leftnav { @@ -67,7 +68,7 @@ span.bold_code { font-family: Courier, monospace; font-weight: bold } span.code { font-family: Courier, monospace; font-weight: normal } .note, .warning, .do, .dont { - border: solid black 1px; + border: solid #3E4349 1px; margin: 1em 3em; } .note .label { @@ -78,7 +79,7 @@ span.code { font-family: Courier, monospace; font-weight: normal } } .note .content { background: #eafeea; - color: black; + color: #3E4349; line-height: 120%; font-size: 90%; padding: 5px 10px; @@ -91,7 +92,7 @@ span.code { font-family: Courier, monospace; font-weight: normal } } .warning .content { background: #FFF0F0; - color: black; + color: #3E4349; line-height: 120%; font-size: 90%; padding: 5px 10px; @@ -104,7 +105,7 @@ span.code { font-family: Courier, monospace; font-weight: normal } } .do .content { background: #eafeea; - color: black; + color: #3E4349; line-height: 120%; font-size: 90%; padding: 5px 10px; @@ -117,7 +118,7 @@ span.code { font-family: Courier, monospace; font-weight: normal } } .dont .content { background: #FFF0F0; - color: black; + color: #3E4349; line-height: 120%; font-size: 90%; padding: 5px 10px; |