annotate examples/tutorial/geddit/static/layout.css @ 1043:a21009a2bc3a trunk

Return correct value and properly namespaced attribute name when matching namespaced attributes with XPath expressions (fixes #572; thanks to Olemis Lang <olemis+trac@gmail.com> for bug report and suggestion for fix).
author hodgestar
date Thu, 20 Mar 2014 12:58:48 +0000
parents e990fa05d80b
children
rev   line source
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
1 html, body { margin: 0; padding: 0; }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
2 body { background: #ddd; color: #333; font: normal 90%/1.3 Arial,Helvetica,sans-serif; }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
3 :link, :visited { color: #c10000; text-decoration: none; }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
4 :link:hover, :visited:hover { text-decoration: underline; }
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
5 :link img, :visited img { border: none; }
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
6 h1 { color: #666;
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
7 font: normal xx-large/1.5 Georgia,serif; margin: 0 0 .5em;
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
8 }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
9 blockquote { font-style: italic; }
618
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
10 form table { margin-bottom: 1em; }
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
11 form table tbody th { font-weight: normal; padding-top: .3em; text-align: right;
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
12 vertical-align: top;
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
13 }
624
dc657447f352 Use packed version of jQuery to workaround !CherryPy bug [http://www.cherrypy.org/ticket/598 #598].
cmlenz
parents: 622
diff changeset
14 form label { color: #666; font-size: 90%; }
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
15
616
8ada29c99c0d GenshiTutorial: use form filler on comment/reply views.
cmlenz
parents: 611
diff changeset
16 #wrap { background: #fff; width: 600px; margin: 30px auto; }
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
17 #content { border-left: 10px solid #b00; min-height: 240px; padding: 10px; }
630
d03e876d9a61 GenshiTutorial: Remove transparency from the logo.
cmlenz
parents: 624
diff changeset
18 #header img { float: right; margin-top: -21px; margin-right: -37px; }
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
19
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
20 #footer { background: #4A4D4D; border-top: 2px solid #333; font-size: x-small;
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
21 padding: 3px; text-align: center;
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
22 }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
23 #footer hr { display: none; }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
24 .legalese { color: #999; margin: 0; }
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
25
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
26 ol.links li .info { font-size: 85%; }
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
27 ol.links li .info :link, ol.links li .info :visited { color: #666; }
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
28
618
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
29 ul.comments { list-style: none; margin: 1em 0; padding: 0 0 0 1em; }
b6706f9346ac Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 616
diff changeset
30 ul.comments li { color: #999; margin: 0 0 1em; }
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
31 ul.comments blockquote { color: #333; font-style: normal; margin: 0;
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
32 padding: 0;
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
33 }
622
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
34 .action:link, .action:visited { background: #f3f3f3; border: 1px outset #ddd;
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
35 color: #666; font-size: 90%; padding: 0 .3em;
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
36 }
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
37 .action:link:hover, .action:visited:hover { background: #e8e8e8;
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
38 border-color: #aaa; color: #000; text-decoration: none;
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
39 }
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
40
631
e990fa05d80b GenshiTutorial: implement the XSS section.
cmlenz
parents: 630
diff changeset
41 form p.hint { color: #666; font-size: 90%; font-style: italic; margin: 0; }
622
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 619
diff changeset
42 form .error { color: #b00; }
Copyright (C) 2012-2017 Edgewall Software