アセンブルのソースを整理
[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 h2 {
24     padding: 0.25em;
25     color: white;
26     background-color: navy;
27 }
28
29 .contents {
30     background-color: #DDF;
31     border: 4px double #000;
32 }
33
34 .contents h2 {
35     margin-left: 0;
36     color: black;
37     background-color: #DDF;
38 }
39
40 .shortcontents {
41     background-color: #DDF;
42     border: 4px double #000;
43  }
44
45 .shortcontents h2{
46     display: none;
47 }
48
49 .shortcontents a {
50    margin-right: 1em;
51 }
52
53 h3, h4, h5 {
54     color: navy;
55     margin-left: -1em;
56 }
57
58 h5 {
59     font-size: 100%;
60 }
61
62 p {
63     line-height: 1.25em;
64     margin-top: 0;
65     margin-bottom: 0.5em;
66 }
67
68 a:hover {
69     color: red;
70     text-decoration: underline;
71 }
72
73 pre.example {
74     padding: 0.5em 1em 0.5em 1em;
75     color: #CCC;
76     background: black;
77     font-size: 90%;
78 }
79
80 a {
81     text-decoration: none;
82 }
83
84 blockquote {
85     line-height: 1.25em;
86     border: 1px solid #00F;
87 }
88
89 kbd {
90     font-family: monospace;
91 }
92
93 kbd, code, .file {
94     margin-left:0.5em;
95     margin-right: 0.5em;
96 }
97
98 table, th, td {
99     border: 1px solid #CCC;
100     border-collapse: collapse; /* 枠線の表示方法 */
101 }
102
103 table.cartouche, table.cartouche th, table.cartouche td  {
104     border: none;
105 }
106
107 pre.example .command, pre.example .option, pre.example kbd {
108     font-weight: bold;
109     font-family: monospace;
110     background-color: inherit;
111     color: white;
112     margin-left:0;
113     margin-right: 0;
114 }
115
116 pre.example strong {
117     font: inherit;
118     border: 2px solid green;
119 }
120
121 dt {
122     font-weight: bold;
123 }