[Doc] Fixed colors for code elements, no more red, also different color for links

This commit is contained in:
Gina Häußge 2015-03-19 20:56:46 +01:00
parent c12b0f5fee
commit b17730137a

View file

@ -35,4 +35,20 @@
/* make whitespace visualization in code listings not appear on same vertical position as dashes */
.highlight .w {
vertical-align: 10%;
}
}
/* make code tags non-red again */
code,
.rst-content tt {
color: #000;
}
a code,
.rst-content a tt {
color: #2980B9;
}
a:visited code,
.rst-content a:visited tt {
color: #9B59B6;
}