annotate lisp/w3/default.css @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 9ee227acff29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1 /******************************************************************************
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2 ** File: default.css
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ** Purpose: Default Stylesheet for Emacs-W3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ** Info: Copyright (c) 1995 William M. Perry <wmperry@spry.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ** Created: William M. Perry <wmperry@spry.com>, Aug-31-1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ** Maintainer: William M. Perry <wmperry@spry.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ** This contains the top level fallback default styles for Emacs-w3
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
9 **
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
10 ******************************************************************************
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
11 **
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
12 ** To specify device-dependent styles, you must mark a section with
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
13 ** :devicetype:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
14 ** If you are not using 'devicetype', then anything up to the next
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
15 ** :xxx: media descriptor is ignored.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
16 **
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
17 ** There are a few special Emacs-W3 sections
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
18 **
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
19 ** emacs - only include this chunk if you are using Emacs 19
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
20 ** xemacs - only include this chunk if you are using XEmacs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
21 ** normal - always include this chunk (useful for switching out of another
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
22 ** device-type block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
23 ******************************************************************************/
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ** Headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 h1,h2,h3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 h4,h5,h6 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 display: block;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
32 font-family : serif;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 font-weight : bold;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ** Since Emacs-19 doesn't handle mixed-sized fonts very well just yet,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ** we only use them under XEmacs. Hopefully, this will change soon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 :xemacs:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
42 h1 { font-size : +10pt }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
43 h2 { font-size : +6pt }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
44 h3 { font-size : +3pt }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
45 h4 { } /* Do nothing, normal sized font, just bold */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
46 h5 { font-size : -3pt }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
47 h6 { font-size : -6pt }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
48
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
49 /*
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
50 ** Emacs-19 also doesn't handle how Emacs-W3 changes this type of font
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
51 ** very well, so lets only do it under XEmacs for now. Emacs-19 can only
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
52 ** do monospaced fonts anyway, so its redundant.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
53 */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
54 pre,xmp,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
55 plaintext { font-family: monospace; display: block }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
56 key,code,tt { font-family: monospace }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ** Best we can do under Emacs-19 is use the default font and try to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ** the headers stand out somehow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 :emacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 h1,h2,h3,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
65 h4,h5,h6 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
66 font-style: small-caps;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
67 text-decoration: underline;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
68 color: blue;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
69 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
70
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
71 strong,em { color: red }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
72 dfn { font-style: italic }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
73 s,strike { color: green }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 :normal:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 p { display: block }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ** List formatting instructions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 dl,ul,ol {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 display: block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 margin-left: 5em
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 li { display: list-item }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 dt { font-weight: bold; display: block }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 dd { insert-before: 3em; display: list-item }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ** All logical emphasis tags, the way god intended
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
95 strong,em { font-weight: bold }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
96 dfn { font-style: italic }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 s,strike { text-decoration: line-through }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
98 sub { text-position: sub }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
99 sup { text-position: sup }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
100 secret { text-transform: rot13 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ** Physical emphasis - spawn of evil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 b { font-weight: bold }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 i { font-style: italic }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 u { text-decoration: underline }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 blink { text-decoration: blink }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ** Various and sundry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 br { display: list-item }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 hr { display: list-item }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 hr[SRC] { replace: {SRC} }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 ** Hypertext link coloring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 a { cursor: hand2 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
123 a:link { color: #FF0000 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
124 a:visited { color: #B22222 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
125 a:active { color: #FF0000 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ** Various other character-level formatting issues
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 address { align : right }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 abstract { font-style : bold & italic ; align : indent }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 quote { font-style : italic ; align : indent }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ** Now for monochrome defaults
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 :mono:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
139 a:link { color: black; text-decoration: underline }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
140 a:visited { color: black; text-decoration: underline }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
141 a:active { color: white }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ** All the TTY specific formatting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 :tty:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ** First, handle some stuff for generic TTYs to emulate our old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ** behaviour with w3-delimit-links and a subset of w3-delimit-emphasis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 h1,h2,h3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 h4,h5,h6 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
156 insert.before: *;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
157 insert.after: *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
160 a:visited{
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 insert.before: "{{";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 insert.after: "}}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
165 a:link {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 insert.before: "[[";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 insert.after: "]]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* End Generic TTY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 :ansi-tty:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ** Now comes the cool TTY stuff. You will need to be using XEmacs 19.14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ** or later (or Emacs 19.30 under DOS) in order to get any benefit from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ** these whatsoever. But if you are using one of these, wow, cool, eh?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ** ANSI specifies these colors, and most (all?) TTYs that support color
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 ** will generally have 2 versions. One normal and one bright or 'standout'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 ** version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ** Color R G B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ** --------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ** white - 1.0 , 1.0 , 1.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ** cyan - 0.0 , 1.0 , 1.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ** magenta - 1.0 , 0.0 , 1.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 ** blue - 0.0 , 0.0 , 1.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 ** yellow - 1.0 , 1.0 , 0.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 ** green - 0.0 , 1.0 , 0.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ** red - 1.0 , 0.0 , 0.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 ** black - 0.0 , 0.0 , 0.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 h1,h2,h3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 h4,h5,h6 { color : cyan }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
197 a:visited { color : magenta }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
198 a:link { color : red }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
199 a:active { color : yellow }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
200
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
201 :speech:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
202 h1,h2,h3,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
203 h4,h5,h6 { voice-family: paul; stress: 8; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
204 h1 { pitch: 9; pitch-range: 9; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
205 h2 { pitch: 8; pitch-range: 8; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
206 h3 { pitch: 7; pitch-range: 7; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
207 h4 { pitch: 6; pitch-range: 6; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
208 h5,h6 { pitch: 5; pitch-range: 5; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
209 li { pitch: 6; richness: 6; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
210 dt { voice-family: harry; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
211 dd { pitch: 6; richness: 6; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
212 pre,xmp,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
213 plaintext { pitch: 1; pitch-range: 1; stress: 1; richness: 9; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
214 key,code,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
215 tt { pitch: 1; pitch-range: 1; stress: 1; richness: 9; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
216 strong,em { pitch: 6; stress: 8; pitch-range: 9; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
217 dfn { pitch: 7; pitch-range: 6; stress: 6; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
218 s,strike { richness: 9; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
219 b { pitch: 6; pitch-range: 9; stress: 8; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
220 i { pitch: 7; pitch-range: 6; stress: 6; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
221 u { richness: 0; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
222 a:link { voice-family: harry; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
223 a:visited { voice-family: betty; }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
224 a:active { voice-family: ursula; }