OSDN Git Service

Merge branch 'skinnable-master' of sakamocchi@git.sourceforge.jp:/gitroot/nucleus...
[nucleus-jp/nucleus-next.git] / nucleus / styles / manual.css
1 /*
2         documentation style
3         
4         $Id: manual.css 757 2005-08-12 07:29:40Z dekarma $
5 */
6
7 body {
8         background-color: #fff;
9         color: #000;
10         font-family: verdana, arial;
11         font-size: small;
12 }
13
14 @media screen {
15         body {
16                 margin-left: 10%;
17                 margin-right: 10%;
18         }
19 }
20
21 @media print {
22         pre, .note, td, th {
23                 border: 1px dashed gray;
24         }
25 }
26
27 img {
28         border: none;
29 }
30
31 a:link, a:visited {
32         color: #1D3565; 
33         font-weight: bold;
34         text-decoration: none;
35 }
36 a: hover {
37         text-decoration: underline;
38 }
39
40 .heading {
41         text-align: center;
42         font-size: xx-large;
43         font-weight: bold;
44         color: gray;    
45 }
46
47 .heading i {
48         position: absolute;
49         top: 5px;
50         right: 5px;
51         font-size: small;
52         font-style: normal;
53         font-weight: normal;
54 }
55
56 p:first-letter {
57         font-size: large;
58 }
59
60 p {
61         text-indent: 20px;
62 }
63
64 h1 {
65         border-bottom: 1px dotted gray;
66         font-size: x-large;
67         color: #596d9d;
68 }
69
70 h2 {
71         color: gray;
72         font-size: large;
73         margin-left: 20px;
74         text-indent: 10px;
75         border-bottom: 1px solid #ddd;
76 }
77
78 pre, .note, .faq .answer {
79         background-color: #ddd;
80         padding: 10px;
81         font-size: small;
82 }
83
84 .screenshot {
85         text-align: center;
86         background-color: #ddd;
87         padding: 10px;
88 }
89
90 .faq .question {
91         font-weight: bold;
92         margin-bottom: 0px;
93 }
94
95 .faq .answer {
96
97 }
98
99 .faq {
100         margin-bottom: 20px;
101 }
102
103 table {
104         border: none;
105 }
106
107 th {
108         background-color: linen;
109         font-size: medium;
110 }
111
112 th, td {
113         padding: 5px;
114 }
115
116 td {
117         background-color: #dddddd;
118         font-size: small;
119         vertical-align: top;
120         text-align: left;
121 }
122
123 input, select, option, textarea {
124         background-color: transparent;
125 }
126
127 .deprecated {
128         border: 3px solid red;
129         padding: 5px;
130         font-size: medium;
131 }
132
133 tt, code, samp {
134         font-size: small;
135 }
136
137 .warning {
138         color: red;
139 }
140 .ok {
141         color: green;
142 }
143
144 acronym, abbr {
145         border-bottom: 1px dotted gray;
146         cursor: help;
147 }
148
149 label {
150         cursor: hand;
151 }