OSDN Git Service

html/index.html からリンクされた各ファイルを追加
[gintenlib/gintenlib.git] / html / doc.css
1 /*
2   銀天研究所トップページ用 CSS デザイン
3 */
4
5 body
6 {
7   text-align: left;
8   background-color: #FFF;
9   background-image: url(images/bg.png);
10   color: #000;
11   margin: 1em;
12 }
13
14 h1, h2, h3, h4, h5, h6
15 {
16   margin: 1em 0em 0.5em 0em;
17   font-weight: bold;
18 }
19
20 h1 { font: 150% }
21 h2 { font: bold 140% }
22 h3 { font: bold 130% }
23 h4 { font: bold 120% }
24 h5 { font: italic 110% }
25 h6 { font: italic 100% }
26
27 /* バージョン情報 */
28 .verinfo
29 {
30   text-align: right;
31   font-weight: bold;
32   margin: 0em 0em 1em 2em;
33 }
34 /* メニュー */
35 .menu
36 {
37   background-color: #DEF;
38   padding: 0.5em 1em 0.5em 1em;
39 }
40
41 /* アンカー関連 */
42 a:link
43 {
44   color: #00C;
45   text-decoration: none;
46 }
47 a:visited
48 {
49   color: #819;
50   text-decoration: none;
51 }
52 a:hover
53 {
54   color: #C33;
55   text-decoration: underline;
56 }
57 hr
58 {
59   height: 1px;
60   width: 80%;
61   color: #CCC;
62 }
63
64
65 /* 薄く表示 */
66 .weak, del, .insignificant
67 {
68   font-weight: normal;
69   color: #666;
70 }
71 .weak
72 {
73   font-size: smaller;
74 }
75 .weak a:link, del a:link, .insignificant a:visited
76 {
77   color: #33C;
78 }
79 .weak a:visited, del a:visited, .insignificant a:visited
80 {
81   color: #93A;
82 }
83 .weak a:hover, del a:hover, .insignificant a:hover
84 {
85   color: #C66;
86 }
87
88 /* 大事じゃないデータ */
89 .insignificant
90 {
91   text-align: right;
92   font-size: smaller;
93 }
94 /* 大事なデータ */
95 em
96 {
97   color: #C00;
98   font-style: normal;
99 }
100
101
102 /* その他もろもろ */
103 img
104 {
105   border: none;
106 }
107 p
108 {
109   line-height: 1.2em;
110   text-indent: 1em;
111 }
112
113 /* プログラム */
114 pre.literal_block
115 {
116   background-color: #FFF;
117   display: block;
118   margin: 1pc 2em 0pc 2em;
119   padding: 0.5pc 0.5pc 0.5pc 0.5pc;
120   border: 1px solid #DDD;
121 }
122 /* 彩色 */
123 .comment
124 {
125   color: #090;
126 }
127 .quoted
128 {
129   color: #900;
130 }
131
132 /* インデックスメニュー */
133 .index ul
134 {
135   list-style-type: none
136 }