HTMLドキュメントのオーバービューのスタイルを変更
[YACASL2.git] / doc / style.css
1 body {
2     margin-left: 6em;
3     margin-right: 12em;
4     color: black;
5     background-color: #EEE;
6 }
7
8 h1, h2 {
9     margin-left: -2em;
10 }
11
12 .node{
13     margin-left: -3em;
14     color: inherit;
15     background-color: #DDF;
16 }
17
18 .menu, .node {
19     color: inherit;
20     background-color: #DDF;
21 }
22
23 table.menu, table.menu th, table.menu td {
24     border-style: none;
25 }
26
27 h2 {
28     padding: 0.25em;
29     color: white;
30     background-color: navy;
31 }
32
33 .contents {
34     background-color: #DDF;
35     border: 4px double #000;
36 }
37
38 .contents h2 {
39     margin-left: 0;
40     color: black;
41     background-color: #DDF;
42 }
43
44 .shortcontents {
45     background-color: #DDF;
46     border: 4px double #000;
47  }
48
49 .shortcontents h2{
50     display: none;
51 }
52
53 h1.node-heading {
54     display: none;
55 }
56
57 h2.shortcontents-heading{
58     display: none;
59 }
60
61 .shortcontents a {
62    margin-right: 1em;
63 }
64
65 h3, h4, h5 {
66     color: navy;
67     margin-left: -1em;
68 }
69
70 h5 {
71     font-size: 100%;
72 }
73
74 p {
75     line-height: 1.25em;
76     margin-top: 0;
77     margin-bottom: 0.5em;
78 }
79
80 a:hover {
81     color: red;
82     text-decoration: underline;
83 }
84
85 pre.example {
86     padding: 0.5em 1em 0.5em 1em;
87     color: #CCC;
88     background: black;
89     font-size: 90%;
90 }
91
92 a {
93     text-decoration: none;
94 }
95
96 blockquote {
97     line-height: 1.25em;
98     border: 1px solid #00F;
99 }
100
101 kbd {
102     font-family: monospace;
103 }
104
105 kbd, code, .file {
106     margin-left:0.5em;
107     margin-right: 0.5em;
108 }
109
110 table, th, td {
111     border: 1px solid #CCC;
112     border-collapse: collapse; /* 枠線の表示方法 */
113 }
114
115 table.cartouche, table.cartouche th, table.cartouche td  {
116     border: none;
117 }
118
119 pre.example .command, pre.example .option, pre.example kbd {
120     font-weight: bold;
121     font-family: monospace;
122     background-color: inherit;
123     color: white;
124     margin-left:0;
125     margin-right: 0;
126 }
127
128 pre.example strong {
129     font: inherit;
130     border: 2px solid green;
131 }
132
133 dt {
134     font-weight: bold;
135 }
136
137 dfn {
138     font-style: normal;
139 }