cyaml 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/README.mkdn +15 -0
  2. data/lib/cyaml.rb +1 -0
  3. data/stylesheets/_cyaml.scss +5 -0
  4. data/stylesheets/cyaml/core/base.sass +284 -0
  5. data/stylesheets/cyaml/core/iehacks.sass +309 -0
  6. data/stylesheets/cyaml/core/js/yaml-focusfix.js +63 -0
  7. data/stylesheets/cyaml/core/slim_base.sass +0 -0
  8. data/stylesheets/cyaml/core/slim_iehacks.sass +112 -0
  9. data/stylesheets/cyaml/mypart/_fonts.scss +53 -0
  10. data/stylesheets/cyaml/mypart/_handheld.scss +8 -0
  11. data/stylesheets/cyaml/mypart/_helpers.scss +60 -0
  12. data/stylesheets/cyaml/mypart/_media.scss +66 -0
  13. data/stylesheets/cyaml/mypart/_reset.scss +66 -0
  14. data/stylesheets/cyaml/mypart/_styles.scss +110 -0
  15. data/stylesheets/cyaml/navigation/nav_shinybuttons.sass +89 -0
  16. data/stylesheets/cyaml/navigation/nav_slidingdoor.sass +104 -0
  17. data/stylesheets/cyaml/navigation/nav_vlist.sass +121 -0
  18. data/stylesheets/cyaml/patches/patch_layout_draft.sass +27 -0
  19. data/stylesheets/cyaml/patches/patch_nav_vlist.sass +58 -0
  20. data/stylesheets/cyaml/print/print_003.sass +64 -0
  21. data/stylesheets/cyaml/print/print_020_draft.sass +67 -0
  22. data/stylesheets/cyaml/print/print_023_draft.sass +83 -0
  23. data/stylesheets/cyaml/print/print_100_draft.sass +65 -0
  24. data/stylesheets/cyaml/print/print_103_draft.sass +83 -0
  25. data/stylesheets/cyaml/print/print_120_draft.sass +78 -0
  26. data/stylesheets/cyaml/print/print_123_draft.sass +82 -0
  27. data/stylesheets/cyaml/print/print_draft.sass +50 -0
  28. data/stylesheets/cyaml/screen/content.sass +284 -0
  29. data/stylesheets/cyaml/screen/forms.sass +297 -0
  30. data/templates/project/application.html.haml +51 -0
  31. data/templates/project/basemod.scss +103 -0
  32. data/templates/project/citrin.html.haml +51 -0
  33. data/templates/project/images/button_gray.png +0 -0
  34. data/templates/project/images/button_red.png +0 -0
  35. data/templates/project/images/button_yellow.png +0 -0
  36. data/templates/project/images/shiny_buttons/background.png +0 -0
  37. data/templates/project/images/shiny_buttons/background_active.png +0 -0
  38. data/templates/project/images/sliding_door/round/bg.gif +0 -0
  39. data/templates/project/images/sliding_door/round/left.png +0 -0
  40. data/templates/project/images/sliding_door/round/left_on.png +0 -0
  41. data/templates/project/images/sliding_door/round/right.png +0 -0
  42. data/templates/project/images/sliding_door/round/right_on.png +0 -0
  43. data/templates/project/images/vlist/square/node.gif +0 -0
  44. data/templates/project/images/vlist/square/node_minus.gif +0 -0
  45. data/templates/project/images/vlist/square/node_plus.gif +0 -0
  46. data/templates/project/images/vlist/square/subnode.gif +0 -0
  47. data/templates/project/images/vlist/square/subnode_minus.gif +0 -0
  48. data/templates/project/images/vlist/square/subnode_plus.gif +0 -0
  49. data/templates/project/index.html.haml +49 -0
  50. data/templates/project/javascripts/ftod.js +50 -0
  51. data/templates/project/javascripts/lib/jquery-1.3.2.js +4376 -0
  52. data/templates/project/javascripts/lib/jquery-1.3.2.min.js +19 -0
  53. data/templates/project/javascripts/minmax.js +144 -0
  54. data/templates/project/manifest.rb +48 -0
  55. data/templates/project/patch_my_layout.scss +45 -0
  56. data/templates/project/project.scss +0 -0
  57. metadata +130 -0
@@ -0,0 +1,67 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1
43
+ display: none
44
+ #col2, #col2_content
45
+ float: none
46
+ width: 100%
47
+ margin: 0
48
+ padding: 0
49
+ border: 0
50
+ #col3
51
+ display: none
52
+ /*------------------------------------------------------------------------------------------------------
53
+ /* (en) optional output of acronyms and abbreviations
54
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
55
+ /*
56
+ *abbr[title]:after,
57
+ *acronym[title]:after { content:'(' attr(title) ')'; }
58
+ /*------------------------------------------------------------------------------------------------------
59
+ /* (en) optional URL output of hyperlinks in print layout
60
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
61
+ /*
62
+ *a[href]:after {
63
+ * content:" <URL:"attr(href)">";
64
+ * color:#444;
65
+ * background:inherit;
66
+ * font-style:italic;
67
+ *}
@@ -0,0 +1,83 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1
43
+ display: none
44
+ #col2, #col2_content
45
+ float: none
46
+ width: 100%
47
+ margin: 0
48
+ padding: 0
49
+ border: 0
50
+ #col3, #col3_content
51
+ width: 100%
52
+ margin: 0
53
+ padding: 0
54
+ border: 0
55
+ /*------------------------------------------------------------------------------------------------------
56
+ /* Optional Column Labels | Optionale Spaltenauszeichnung
57
+ * #col2_content:before { content:" [ left | middle | right column ]"; }
58
+ * #col3_content:before { content:" [ left | middle | right column ]"; }
59
+ *
60
+ * #col2_content:before, #col3_content:before {
61
+ * content:"";
62
+ * color:#888;
63
+ * background:inherit;
64
+ * display:block;
65
+ * font-weight:bold;
66
+ * font-size:1.5em;
67
+ * }
68
+ /*------------------------------------------------------------------------------------------------------
69
+ /* (en) optional output of acronyms and abbreviations
70
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
71
+ /*
72
+ *abbr[title]:after,
73
+ *acronym[title]:after { content:'(' attr(title) ')'; }
74
+ /*------------------------------------------------------------------------------------------------------
75
+ /* (en) optional URL output of hyperlinks in print layout
76
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
77
+ /*
78
+ *a[href]:after {
79
+ * content:" <URL:"attr(href)">";
80
+ * color:#444;
81
+ * background:inherit;
82
+ * font-style:italic;
83
+ *}
@@ -0,0 +1,65 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1, #col1_content
43
+ float: none
44
+ width: 100%
45
+ margin: 0
46
+ padding: 0
47
+ border: 0
48
+ #col2, #col3
49
+ display: none
50
+ /*------------------------------------------------------------------------------------------------------
51
+ /* (en) optional output of acronyms and abbreviations
52
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
53
+ /*
54
+ *abbr[title]:after,
55
+ *acronym[title]:after { content:'(' attr(title) ')'; }
56
+ /*------------------------------------------------------------------------------------------------------
57
+ /* (en) optional URL output of hyperlinks in print layout
58
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
59
+ /*
60
+ *a[href]:after {
61
+ * content:" <URL:"attr(href)">";
62
+ * color:#444;
63
+ * background:inherit;
64
+ * font-style:italic;
65
+ *}
@@ -0,0 +1,83 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1, #col1_content
43
+ float: none
44
+ width: 100%
45
+ margin: 0
46
+ padding: 0
47
+ border: 0
48
+ #col2
49
+ display: none
50
+ #col3, #col3_content
51
+ width: 100%
52
+ margin: 0
53
+ padding: 0
54
+ border: 0
55
+ /*------------------------------------------------------------------------------------------------------
56
+ /* Optional Column Labels | Optionale Spaltenauszeichnung
57
+ * #col1_content:before { content:" [ left | middle | right column ]"; }
58
+ * #col3_content:before { content:" [ left | middle | right column ]"; }
59
+ *
60
+ * #col1_content:before, #col3_content:before {
61
+ * content:"";
62
+ * color:#888;
63
+ * background:inherit;
64
+ * display:block;
65
+ * font-weight:bold;
66
+ * font-size:1.5em;
67
+ * }
68
+ /*------------------------------------------------------------------------------------------------------
69
+ /* (en) optional output of acronyms and abbreviations
70
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
71
+ /*
72
+ *abbr[title]:after,
73
+ *acronym[title]:after { content:'(' attr(title) ')'; }
74
+ /*------------------------------------------------------------------------------------------------------
75
+ /* (en) optional URL output of hyperlinks in print layout
76
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
77
+ /*
78
+ *a[href]:after {
79
+ * content:" <URL:"attr(href)">";
80
+ * color:#444;
81
+ * background:inherit;
82
+ * font-style:italic;
83
+ *}
@@ -0,0 +1,78 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1, #col1_content, #col2, #col2_content
43
+ float: none
44
+ width: 100%
45
+ margin: 0
46
+ padding: 0
47
+ border: 0
48
+ #col3
49
+ display: none
50
+ /*------------------------------------------------------------------------------------------------------
51
+ /* Optional Column Labels | Optionale Spaltenauszeichnung
52
+ * #col1_content:before { content:" [ left | middle | right column ]"; }
53
+ * #col2_content:before { content:" [ left | middle | right column ]"; }
54
+ *
55
+ * #col1_content:before, #col2_content:before {
56
+ * content:"";
57
+ * color:#888;
58
+ * background:inherit;
59
+ * display:block;
60
+ * font-weight:bold;
61
+ * font-size:1.5em;
62
+ * }
63
+ /*------------------------------------------------------------------------------------------------------
64
+ /* (en) optional output of acronyms and abbreviations
65
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
66
+ /*
67
+ *abbr[title]:after,
68
+ *acronym[title]:after { content:'(' attr(title) ')'; }
69
+ /*------------------------------------------------------------------------------------------------------
70
+ /* (en) optional URL output of hyperlinks in print layout
71
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
72
+ /*
73
+ *a[href]:after {
74
+ * content:" <URL:"attr(href)">";
75
+ * color:#444;
76
+ * background:inherit;
77
+ * font-style:italic;
78
+ *}
@@ -0,0 +1,82 @@
1
+ @charset "UTF-8"
2
+
3
+ /**
4
+ * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
5
+ *
6
+ * (en) print stylesheet
7
+ * (de) Druck-Stylesheet
8
+ *
9
+ * @copyright Copyright 2005-2010, Dirk Jesse
10
+ * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
11
+ * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
12
+ * @link http://www.yaml.de
13
+ * @package yaml
14
+ * @version 3.2.1
15
+ * @revision $Revision:392 $
16
+ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
17
+
18
+ @media print
19
+ /**
20
+ * @section basic layout preparation
21
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
22
+ /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers
23
+ /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden
24
+ body
25
+ font-size: 10pt
26
+ /* (en) Hide unneeded container of the screenlayout in print layout
27
+ /* (de) Für den Druck nicht benötigte Container des Layouts abschalten
28
+ #topnav, #nav, #search
29
+ display: none
30
+ /*------------------------------------------------------------------------------------------------------
31
+ /* (en) Avoid page breaks right after headings
32
+ /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift
33
+ h1, h2, h3, h4, h5, h6
34
+ page-break-after: avoid
35
+ /*------------------------------------------------------------------------------------------------------
36
+ /**
37
+ * @section column selection
38
+ * (en) individually switch on/off any content column for printing
39
+ * (de) (De)aktivierung der Contentspalten für den Ausdruck
40
+ *
41
+ * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
42
+ #col1, #col1_content, #col2, #col2_content
43
+ float: none
44
+ width: 100%
45
+ margin: 0
46
+ padding: 0
47
+ border: 0
48
+ #col3, #col3_content
49
+ width: 100%
50
+ margin: 0
51
+ padding: 0
52
+ border: 0
53
+ /*------------------------------------------------------------------------------------------------------
54
+ /* Optional Column Labels | Optionale Spaltenauszeichnung
55
+ * #col1_content:before { content:" [ left | middle | right column ]"; }
56
+ * #col2_content:before { content:" [ left | middle | right column ]"; }
57
+ * #col3_content:before { content:" [ left | middle | right column ]"; }
58
+ *
59
+ * #col1_content:before, #col2_content:before, #col3_content:before {
60
+ * content:"";
61
+ * color:#888;
62
+ * background:inherit;
63
+ * display:block;
64
+ * font-weight:bold;
65
+ * font-size:1.5em;
66
+ * }
67
+ /*------------------------------------------------------------------------------------------------------
68
+ /* (en) optional output of acronyms and abbreviations
69
+ /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen
70
+ /*
71
+ *abbr[title]:after,
72
+ *acronym[title]:after { content:'(' attr(title) ')'; }
73
+ /*------------------------------------------------------------------------------------------------------
74
+ /* (en) optional URL output of hyperlinks in print layout
75
+ /* (de) optionale Ausgabe der URLs von Hyperlinks
76
+ /*
77
+ *a[href]:after {
78
+ * content:" <URL:"attr(href)">";
79
+ * color:#444;
80
+ * background:inherit;
81
+ * font-style:italic;
82
+ *}