# HG changeset patch # User Alexander Solovyov <alexander@solovyov.net> # Date 1296065282 -3600 # Node ID c96a3a22fdae62c7da607881d86c12c4184f41d5 # Parent f495e252c498fbd371f5ba082f497130b9329884 style improvement again diff -r f495e252c498 -r c96a3a22fdae docs/_static/cleanery.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/_static/cleanery.css Wed Jan 26 19:08:02 2011 +0100 @@ -0,0 +1,20 @@ +@import url("default.css"); + +body { + max-width: 60em; + margin: 0 auto; + background-color: white; +} + +h1, h2, h3, h4, h5, h6 { + background-color: white !important; + border-bottom: none !important; +} + +div.related { + background-color: white; + color: black; +} +div.related a { + color: #20435C +} diff -r f495e252c498 -r c96a3a22fdae docs/_static/custom.css --- a/docs/_static/custom.css Wed Jan 26 19:01:37 2011 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -@import url("default.css"); - -body { - max-width: 60em; - margin: 0 auto; - background-color: white; -} - -h1, h2, h3, h4, h5, h6 { - background-color: white !important; - border-bottom: none !important; -} - -div.related { - background-color: white; - color: black; -} -div.related a { - color: #20435C -} - -div.related .right, div.document + div.related { - display: none; -} diff -r f495e252c498 -r c96a3a22fdae docs/conf.py --- a/docs/conf.py Wed Jan 26 19:01:37 2011 +0100 +++ b/docs/conf.py Wed Jan 26 19:08:02 2011 +0100 @@ -20,13 +20,10 @@ # -- Options for HTML output --------------------------------------------------- html_theme = 'default' +html_style = 'custom.css' +html_theme_options = {'nosidebar': True} html_title = "%s v%s" % (project, version) html_static_path = ['_static'] html_use_smartypants = True html_use_index = False html_show_sourcelink = False - -html_style = 'custom.css' -html_theme_options = { - 'nosidebar': True, - }