1 | /*
|
---|
2 | | This file is part of the DITA Open Toolkit project hosted on
|
---|
3 | | Sourceforge.net. See the accompanying license.txt file for
|
---|
4 | | applicable licenses.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | | (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved.
|
---|
9 | */
|
---|
10 |
|
---|
11 | /* DOMAINS particular support (selection on element names) */
|
---|
12 |
|
---|
13 |
|
---|
14 | /* software domain (sw-d) particular class support */
|
---|
15 |
|
---|
16 |
|
---|
17 |
|
---|
18 | /* user interface domain (ui-d) particular class support */
|
---|
19 |
|
---|
20 |
|
---|
21 | screen {
|
---|
22 | display: block;
|
---|
23 | background-color: black;
|
---|
24 | color: lime;
|
---|
25 | white-space: pre;
|
---|
26 | font-family: monospace, "Courier New";
|
---|
27 | font-weight: bold;
|
---|
28 | font-size: 9pt;
|
---|
29 | padding: 4pt;
|
---|
30 | margin-bottom: 6pt;
|
---|
31 | }
|
---|
32 |
|
---|
33 |
|
---|
34 | /* programming domain (pr-d) particular class support */
|
---|
35 |
|
---|
36 | var {
|
---|
37 | font-style: italic;
|
---|
38 | }
|
---|
39 |
|
---|
40 |
|
---|
41 |
|
---|
42 | /* highlight domain (hi-d) particular class support */
|
---|
43 |
|
---|
44 | b {
|
---|
45 | font-weight: bold;
|
---|
46 | }
|
---|
47 |
|
---|
48 | i {
|
---|
49 | font-style: italic;
|
---|
50 | }
|
---|
51 |
|
---|
52 | tt {
|
---|
53 | font-family: monospace;
|
---|
54 | }
|
---|
55 |
|
---|
56 | u {
|
---|
57 | text-decoration: underline;
|
---|
58 | }
|
---|
59 |
|
---|
60 | sup {
|
---|
61 | vertical-align: super;
|
---|
62 | font-size: smaller;
|
---|
63 | }
|
---|
64 |
|
---|
65 | sub {
|
---|
66 | vertical-align: sub;
|
---|
67 | font-size: smaller;
|
---|
68 | }
|
---|
69 |
|
---|