# HG changeset patch # User Yuya Nishihara # Date 2009-11-10 12:48:10 # Node ID 42ced358cbba35b0ea619188059d8e8a69107b0e # Parent 9ebad1b934560380b3c418f97c5ce6beaf846da9 doc/style: use default font color specified by user * it's bad to specify only foreground color: http://www.w3.org/QA/Tips/color * some people prefer dark background * `color: #111' is mostly the same as `color: black', which is the default of almost all popular browsers. so it's preferable to delete `color: #111', rather than adding `background-color: white'. diff --git a/doc/style.css b/doc/style.css --- a/doc/style.css +++ b/doc/style.css @@ -12,7 +12,6 @@ body { margin: 0; padding: 0; font-family: sans-serif; - color: #111; } .document { @@ -72,7 +71,7 @@ a:link { color: #00b5f1; } a:visited { color: #5c9caf; } a:link.toc-backref, a:visited.toc-backref { text-decoration: none; - color: #111; /* `inherit' is not supported by IE6 */ + color: inherit; /* NOTE: `inherit' is not supported by IE6 */ } div.admonition, div.attention, div.caution,