~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/media/nltkdoc.css

  • Committer: Nick Chadwick
  • Date: 2009-02-25 16:39:59 UTC
  • mto: (1099.1.227 exercise-ui)
  • mto: This revision was merged to the branch mainline in revision 1162.
  • Revision ID: chadnickbok@gmail.com-20090225163959-3hsedlesu2pjm12e
Added a few extra files. I'm not sure if they're necessary, and I don't
have time to find out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
:Author: Edward Loper
 
3
:Copyright: This stylesheet has been placed in the public domain.
 
4
 
 
5
Stylesheet for use with Docutils.
 
6
 
 
7
This stylesheet defines new css classes used by NLTK.
 
8
*/
 
9
 
 
10
/* Include the standard docutils stylesheet. */
 
11
@import url(default.css);
 
12
 
 
13
/* Custom inline roles */
 
14
span.example        { font-style: italic; }
 
15
span.term           { font-style: bold; }
 
16
span.category       {  }
 
17
 
 
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; }
 
27