Mercurial > babel > old > babel-test
annotate doc/style/edgewall.css @ 118:de3d43b538a4
Make the Genshi extractor wrap the `ignore_attrs` and `ignore_tags` in `QName` instances automatically.
author | cmlenz |
---|---|
date | Fri, 15 Jun 2007 19:42:50 +0000 |
parents | eb422d74d749 |
children | 2071e375cf29 |
rev | line source |
---|---|
40 | 1 @import url(docutils.css); |
2 @import url(pygments.css); | |
2 | 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 { | |
11 border-bottom: 1px solid #ccc; | |
12 font-family: Arial,Verdana,'Bitstream Vera Sans',Helvetica,sans-serif; | |
13 font-weight: bold; letter-spacing: -0.018em; | |
14 } | |
15 h1 { font-size: 19px; margin: 2em 0 .5em; } | |
16 h2 { font-size: 16px; margin: 1.5em 0 .5em; } | |
17 h3 { font-size: 14px; margin: 1.2em 0 .5em; } | |
18 hr { border: none; border-top: 1px solid #ccb; margin: 2em 0; } | |
19 p { margin: 0 0 1em; } | |
20 | |
18
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
21 table { border: 1px solid #999; border-width: 0 1px 0 0; |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
22 border-collapse: separate; border-spacing: 0; |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
23 } |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
24 table thead th { background: #999; border: 1px solid #999;; color: #fff; |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
25 font-weight: bold; |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
26 } |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
27 table td { border: 1px solid #ccc; border-width: 0 0 1px 1px; padding: .3em; } |
77a68f88f6bc
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
2
diff
changeset
|
28 |
2 | 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; | |
40 border-left: 1px solid #000; margin: 0 auto 0 40px; | |
41 min-height: 100%; width: 54em; padding: 0 180px 1px 20px; | |
42 } | |
45 | 43 h1.title, div.document#babel h1 { border: none; color: #666; |
2 | 44 font-size: x-large; margin: 0 -20px 1em; padding: 2em 20px 0; |
45 } | |
46 h1.title { background: url(vertbars.png) repeat-x; } | |
45 | 47 div.document#babel h1.title { text-indent: -4000px; } |
48 div.document#babel h1 { text-align: center; } | |
40 | 49 pre.literal-block, div.highlight pre { background: #f4f4f4; |
50 border: 1px solid #e6e6e6; color: #000; margin: 1em 1em; padding: .25em; | |
51 overflow: auto; | |
2 | 52 } |
53 | |
54 div.contents { font-size: 90%; position: absolute; position: fixed; | |
55 margin-left: 80px; left: 60em; top: 30px; right: 0; | |
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 } | |
65 | |
40 | 66 div.admonition, div.attention, div.caution, div.danger, div.error, div.hint, |
67 div.important, div.note, div.tip, div.warning { | |
68 border: none; color: #333; font-style: italic; margin: 1em 2em; | |
2 | 69 } |
40 | 70 div.attention p.admonition-title, div.caution p.admonition-title, div.danger |
71 p.admonition-title, div.error p.admonition-title, | |
72 div.warning p.admonition-title { | |
73 color: #b00; | |
74 } | |
75 p.admonition-title { margin-bottom: 0; text-transform: uppercase; } | |
76 tt.docutils { background-color: transparent; } |