3
:Copyright: This stylesheet has been placed in the public domain.
5
Stylesheet for use with Docutils.
7
This stylesheet defines new css classes used by NLTK.
10
/* Include the standard docutils stylesheet. */
11
@import url(default.css);
13
/* Custom inline roles */
14
span.example { font-style: italic; }
15
span.term { font-style: bold; }
18
/* Python souce code listings */
19
pre.doctest-block { font-weight: bold;
20
padding: .5em 1em .5em 1em; border: 1px solid black;
21
background-color: #eeeeee; }
22
span.pysrc-prompt { color: #006070; }
23
span.pysrc-keyword { color: #600000; }
24
span.pysrc-string { color: #006030; }
25
span.pysrc-comment { color: #003060; }
26
span.pysrc-output { color: #000000; font-weight: normal; }