annotate doc/style/edgewall.css @ 382:d7da3fba7faf

* Added documentation for the various stream event kinds. * Move generation of HTML documentation into a custom distutils command, run by `setup.py build_doc` * Added verification of doctest snippets in documentation, which can be run by `setup.py test_doc` * Fixed `repr` of `Markup` instances.
author cmlenz
date Fri, 01 Dec 2006 23:43:59 +0000
parents 66e702ab4ae4
children 6fd7e4dc0318 0742f421caba
rev   line source
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
1 @import(docutils.css);
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
2
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
3 html, body { height: 100%; margin: 0; padding: 0; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
4 html, body { background: #4b4d4d url(bkgnd_pattern.png); color: #000; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
5 body, th, td {
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
6 font: normal small Verdana,Arial,'Bitstream Vera Sans',Helvetica,sans-serif;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
7 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
8 pre, code, tt { font-size: medium; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
9 h1, h2, h3, h4 {
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
10 border-bottom: 1px solid #ccc;
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
11 font-family: Arial,Verdana,'Bitstream Vera Sans',Helvetica,sans-serif;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
12 font-weight: bold; letter-spacing: -0.018em;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
13 }
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
14 h1 { font-size: 19px; margin: 2em 0 .5em; }
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
15 h2 { font-size: 16px; margin: 1.5em 0 .5em; }
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
16 h3 { font-size: 14px; margin: 1.2em 0 .5em; }
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
17 hr { border: none; border-top: 1px solid #ccb; margin: 2em 0; }
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
18 p { margin: 0 0 1em; }
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
19
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
20 :link, :visited { text-decoration: none; border-bottom: 1px dotted #bbb;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
21 color: #b00;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
22 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
23 :link:hover, :visited:hover { background-color: #eee; color: #555; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
24 :link img, :visited img { border: none }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
25 h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited,
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
26 h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited {
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
27 color: #000;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
28 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
29
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
30 div.document { background: #fff url(shadow.gif) right top repeat-y;
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
31 border-left: 1px solid #000; margin: 0 auto 0 40px;
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
32 min-height: 100%; width: 54em; padding: 0 180px 1px 20px;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
33 }
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
34 h1.title, div.document#genshi h1 { border: none; color: #666;
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
35 font-size: x-large; margin: 0 -20px 1em; padding: 2em 20px 0;
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
36 }
236
66e702ab4ae4 Fix title on index page of HTML docs.
cmlenz
parents: 235
diff changeset
37 h1.title { background: url(vertbars.png) repeat-x; }
66e702ab4ae4 Fix title on index page of HTML docs.
cmlenz
parents: 235
diff changeset
38 div.document#genshi h1.title { text-indent: -4000px; }
66e702ab4ae4 Fix title on index page of HTML docs.
cmlenz
parents: 235
diff changeset
39 div.document#genshi h1 { text-align: center; }
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
40 pre.literal-block { background: #d7d7d7; border: 1px solid #e6e6e6; color: #000;
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
41 margin: 1em 1em; padding: .25em; overflow: auto;
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
42 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
43
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
44 div.contents { font-size: 90%; position: absolute; position: fixed;
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
45 margin-left: 80px; left: 60em; top: 30px; right: 0;
235
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
46 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
47 div.contents .topic-title { display: none; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
48 div.contents ul { list-style: none; padding-left: 0; }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
49 div.contents :link, div.contents :visited { color: #c6c6c6; border: none;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
50 display: block; padding: 3px 5px 3px 10px;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
51 }
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
52 div.contents :link:hover, div.contents :visited:hover { background: #000;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
53 color: #fff;
b3cabd49de75 Beautified the HTML docs a bit.
cmlenz
parents:
diff changeset
54 }
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
55
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
56 p.admonition-title { font-weight: bold; margin-bottom: 0; }
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 236
diff changeset
57 div.note { font-style: italic; margin-left: 2em; margin-right: 2em; }
Copyright (C) 2012-2017 Edgewall Software