1/**
2 * Style definitions used by the Formatting+ plugin.
3 *
4 * @author Tom N Harris <tnharris@whoopdedo.org>
5 */
6
7kbd {
8  font-family: monospace, serif;
9  font-style: normal;
10}
11
12samp {
13  font-family: monospace, serif;
14  text-decoration: underline;
15}
16
17var {
18  font-family: monospace, serif;
19  font-style: oblique;
20}
21
22dfn {
23  font-style: oblique;
24  font-weight: bolder;
25}
26
27/* Small-caps style. Uses strong, but is not bold nor slanted. */
28strong.smallcaps {
29  font-weight: normal;
30  font-style: normal;
31  font-variant: small-caps;
32}
33
34/* Draw light-colored text on a dark background, or vice-versa. */
35em.inverse {
36  font-style: normal;
37  color: white;
38  background-color: black;
39}
40
41sub{
42}
43sup{
44}
45
46cite {
47}
48
49q {
50  quotes: '“' '”' '‘' '’';
51}
52q:before {
53  content: open-quote;
54}
55q:after {
56  content: close-quote;
57}
58
59blockquote.citation {
60  margin: 0 3em 1em;
61  padding: 3px;
62  border: 1px dotted __border__;
63  background: __background_alt__ url(images/blockquote.png) no-repeat 0.3em 0.3em;
64  color: black;
65  font-style: oblique;
66  overflow: auto;
67}
68blockquote.citation[title]:after {
69  font-size: 80%;
70  font-style: italic;
71  content: '—' attr(title);
72  display: block;
73  margin-left: 60%;
74  margin-top: 1em;
75  padding-left: 1em;
76}
77.citation_after {
78  font-size: 80%;
79  font-style: italic;
80  display: block;
81  margin-left: 60%;
82  margin-top: 1em;
83  padding-left: 1em;
84}
85
86ins{
87	text-decoration: underline;
88}
89del{
90	text-decoration: line-through;
91}
92
93ins.block{
94}
95del.block{
96}
97
98.inserted{
99	padding-right: 0.5em;
100	border-right: 0.5em solid #9e9;
101}
102.deleted{
103	padding-right: 0.5em;
104	border-right: 0.5em solid #e99;
105}
106