Apply some changes to agogo, contributed by Florian Diesch.

This commit is contained in:
Georg Brandl 2010-02-28 09:36:27 +01:00
parent f6260eb6e0
commit adca1e02b0
3 changed files with 39 additions and 3 deletions

View File

@ -162,6 +162,8 @@ These themes are:
headings. headings.
- **headerlinkcolor** (CSS color): Color for the backreference link in - **headerlinkcolor** (CSS color): Color for the backreference link in
headings. headings.
- **textalign** (CSS *text-align* value): Text alignment for the body, default
is ``justify``.
* **nature** -- A greenish theme. There are currently no options beyond * **nature** -- A greenish theme. There are currently no options beyond
*nosidebar*. *nosidebar*.

View File

@ -39,10 +39,13 @@ div.header-wrapper {
/* Default body styles */ /* Default body styles */
a { a {
text-decoration: none;
color: {{ theme_linkcolor }}; color: {{ theme_linkcolor }};
} }
div.bodywrapper a, div.footer a {
text-decoration: underline;
}
.clearer { .clearer {
clear: both; clear: both;
} }
@ -99,7 +102,21 @@ dt:hover > a.headerlink {
visibility: visible; visibility: visible;
} }
img {
border: 0;
}
div.admonition {
margin-top: 10px;
margin-bottom: 10px;
padding: 2px 7px 1px 7px;
border-left: 0.2em solid black;
}
p.admonition-title {
margin: 0px 10px 5px 0px;
font-weight: bold;
}
/* Header */ /* Header */
@ -152,7 +169,7 @@ div.document {
div.body { div.body {
padding-right: 2em; padding-right: 2em;
text-align: justify; text-align: {{ theme_textalign }};
} }
div.document ul { div.document ul {
@ -217,6 +234,14 @@ div.sidebar {
font-size: .9em; font-size: .9em;
} }
div.sidebar a, div.header a {
text-decoration: none;
}
div.sidebar a:hover, div.header a:hover {
text-decoration: underline;
}
div.sidebar h3 { div.sidebar h3 {
color: #2e3436; color: #2e3436;
text-transform: uppercase; text-transform: uppercase;
@ -241,6 +266,14 @@ div.sidebar li.toctree-l1 a {
div.sidebar li.toctree-l2 a { div.sidebar li.toctree-l2 a {
background-color: transparent; background-color: transparent;
border: none; border: none;
margin-left: 1em;
border-bottom: 1px solid #dddddd;
}
div.sidebar li.toctree-l3 a {
background-color: transparent;
border: none;
margin-left: 2em;
border-bottom: 1px solid #dddddd; border-bottom: 1px solid #dddddd;
} }

View File

@ -16,3 +16,4 @@ linkcolor = #ce5c00
headercolor1 = #204a87 headercolor1 = #204a87
headercolor2 = #3465a4 headercolor2 = #3465a4
headerlinkcolor = #fcaf3e headerlinkcolor = #fcaf3e
textalign = justify