Mercurial > genshi > genshi-test
annotate doc/style/edgewall.css @ 535:c8806216aec4
The I18n filter no longer extracts or translates literal strings in attribute values that also contain expressions.
author | cmlenz |
---|---|
date | Wed, 27 Jun 2007 17:58:35 +0000 |
parents | f38ce008ab0a |
children |
rev | line source |
---|---|
508
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
1 @import url(docutils.css); |
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
2 @import url(pygments.css); |
235 | 3 |
4 html, body { height: 100%; margin: 0; padding: 0; } | |
5 html, body { background: #4b4d4d url(bkgnd_pattern.png); color: #000; } | |
6 body, th, td { | |
7 font: normal small Verdana,Arial,'Bitstream Vera Sans',Helvetica,sans-serif; | |
8 } | |
9 pre, code, tt { font-size: medium; } | |
10 h1, h2, h3, h4 { | |
382
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
11 border-bottom: 1px solid #ccc; |
235 | 12 font-family: Arial,Verdana,'Bitstream Vera Sans',Helvetica,sans-serif; |
13 font-weight: bold; letter-spacing: -0.018em; | |
14 } | |
382
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
15 h1 { font-size: 19px; margin: 2em 0 .5em; } |
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
16 h2 { font-size: 16px; margin: 1.5em 0 .5em; } |
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
17 h3 { font-size: 14px; margin: 1.2em 0 .5em; } |
235 | 18 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
|
19 p { margin: 0 0 1em; } |
235 | 20 |
497 | 21 table { border: 1px solid #999; border-width: 0 1px 0 0; |
22 border-collapse: separate; border-spacing: 0; | |
23 } | |
24 table thead th { background: #999; border: 1px solid #999;; color: #fff; | |
25 font-weight: bold; | |
26 } | |
27 table td { border: 1px solid #ccc; border-width: 0 0 1px 1px; padding: .3em; } | |
28 | |
235 | 29 :link, :visited { text-decoration: none; border-bottom: 1px dotted #bbb; |
30 color: #b00; | |
31 } | |
32 :link:hover, :visited:hover { background-color: #eee; color: #555; } | |
33 :link img, :visited img { border: none } | |
34 h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited, | |
35 h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited { | |
36 color: #000; | |
37 } | |
38 | |
39 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
|
40 border-left: 1px solid #000; margin: 0 auto 0 40px; |
235 | 41 min-height: 100%; width: 54em; padding: 0 180px 1px 20px; |
42 } | |
382
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
43 h1.title, div.document#genshi h1 { border: none; color: #666; |
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
44 font-size: x-large; margin: 0 -20px 1em; padding: 2em 20px 0; |
235 | 45 } |
236 | 46 h1.title { background: url(vertbars.png) repeat-x; } |
47 div.document#genshi h1.title { text-indent: -4000px; } | |
48 div.document#genshi h1 { text-align: center; } | |
508
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
49 pre.literal-block, div.highlight pre { background: #f4f4f4; |
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
50 border: 1px solid #e6e6e6; color: #000; margin: 1em 1em; padding: .25em; |
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
51 overflow: auto; |
235 | 52 } |
53 | |
382
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
54 div.contents { font-size: 90%; position: absolute; position: fixed; |
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
55 margin-left: 80px; left: 60em; top: 30px; right: 0; |
235 | 56 } |
57 div.contents .topic-title { display: none; } | |
58 div.contents ul { list-style: none; padding-left: 0; } | |
59 div.contents :link, div.contents :visited { color: #c6c6c6; border: none; | |
60 display: block; padding: 3px 5px 3px 10px; | |
61 } | |
62 div.contents :link:hover, div.contents :visited:hover { background: #000; | |
63 color: #fff; | |
64 } | |
382
d7da3fba7faf
* Added documentation for the various stream event kinds.
cmlenz
parents:
236
diff
changeset
|
65 |
508
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
66 div.admonition, div.attention, div.caution, div.danger, div.error, div.hint, |
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
67 div.important, div.note, div.tip, div.warning { |
cabd80e75dad
Enable syntax highlighting (with Pygments) on doc page.
cmlenz
parents:
497
diff
changeset
|
68 border: none; color: #333; font-style: italic; margin: 1em 2em; |
438
6fd7e4dc0318
Added documentation page on the builtin stream filters.
cmlenz
parents:
382
diff
changeset
|
69 } |
510
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
70 div.attention p.admonition-title, div.caution p.admonition-title, div.danger |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
71 p.admonition-title, div.error p.admonition-title, |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
72 div.warning p.admonition-title { |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
73 color: #b00; |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
74 } |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
75 p.admonition-title { margin-bottom: 0; text-transform: uppercase; } |
ca7d707d51b0
Use syntax highlighting on all the other doc pages, too.
cmlenz
parents:
508
diff
changeset
|
76 tt.docutils { background-color: transparent; } |
528
f38ce008ab0a
Integrated [http://babel.edgewall.org/ Babel] message extraction plugin, and added I18n doc page.
cmlenz
parents:
510
diff
changeset
|
77 span.pre { white-space: normal } |