source: projects/vine-manual-base/trunk/css/gnome.css.in @ 4183

Revision 4183, 4.2 KB checked in by yasumichi, 13 years ago (diff)

web 用に リンク文字列を修正

Line 
1/* From gnome-doc-utils */
2
3/*
4 * linktrail
5 */
6ul.linktrail {
7  display: block;
8  margin: 0.2em 0 0 0;
9  text-align: right;
10}
11li.linktrail { display: inline; margin: 0; padding: 0; }
12
13li.linktrail::before {
14  content: '  /  ';
15  color: #3f3f3f;
16}
17
18/*
19 * Sidebar
20 */
21div.sidebar {
22  float: right;
23  padding: 0; margin: 0; width: 12em;
24}
25div.sidenav {
26  padding: 0.5em 1em 0 1em;
27  background-color: #ffffff;
28  border: solid 1px #e0e0df;
29}
30div.sidenav div.autotoc {
31  background-color: #ffffff;
32  border: none; padding: 0; margin: 0;
33}
34div.sidenav div.autotoc div.autotoc { margin-top: 0.5em; }
35div.sidenav div.autotoc li { margin-bottom: 0.5em; }
36div.sidenav div.autotoc div.autotoc div.autotoc {
37  margin-left: 1em;
38  margin-top: 0;
39}
40div.sidenav div.autotoc div.autotoc div.autotoc li { margin-bottom: 0; }
41
42div.autotoc {
43  display: table;
44  margin-top: 1em;
45  margin-left: 1.72em;
46  padding: 0.5em 1em 0.5em 1em;
47  background-color: #f0f9ff;
48  border: solid 1px #c0c9ff;
49}
50div.autotoc ul { margin: 0; padding: 0; }
51div.autotoc li { list-style-type: none; margin: 0; }
52div.autotoc div.autotoc-title { margin-bottom: 0.5em; }
53div.autotoc div.autotoc { border: none; padding: 0; margin-top: 0; margin-bottom: 0.5em; }
54div.autotoc div.autotoc div.autotoc { margin-bottom: 0; }
55
56/*
57 * Navibar
58 */
59div.body-sidebar {
60  margin-right: 13em;
61}
62
63div.navbar {
64  padding: 0.5em 1em 0.5em 1em;
65  /*max-width: 60em;*/
66  margin-right: 13em;
67  background-color: #ffffff;
68  border: solid 1px #e0e0df;
69}
70div.navbar-top { margin-bottom: 1em; }
71div.navbar-bottom { margin-top: 1em; clear: both; }
72div.navbar img { border: 0; vertical-align: -0.4em; }
73table.navbar { width: 100%; margin: 0; border: none; }
74table.navbar td { padding: 0; border: none; }
75td.navbar-next {
76  text-align: right;
77}
78a.navbar-prev::before {
79 
80  content: '◀  ';
81  color: #3f3f3f;
82}
83a.navbar-next::after {
84 
85  content: '  ▶';
86  color: #3f3f3f;
87}
88
89/*
90 * admonition
91 */
92div.caution-inner, div.important-inner, div.note-inner, div.tip-inner, div.warning-inner {
93  padding-left: 40px;   /* moddified */
94  background-position: left top;
95  background-repeat: no-repeat;
96  min-height: 48px;
97}
98div.important-inner { background-image: url("@IMAGEURI@/important.png"); }
99div.note-inner { background-image: url("@IMAGEURI@/note.png"); }
100div.warning-inner { background-image: url("@IMAGEURI@/warning.png"); }
101div.admonition span.title {
102        border-bottom: 1px dashed #ADADAD;
103        color: #333366;
104        font-size: 18px;
105        font-weight: normal;
106}
107
108        /* Vine original */
109.important {
110        width: 90%;
111        margin: auto;
112        margin-top: 5px;
113        padding: 3px;
114        border: solid 3px #666699;
115        border-style: solid;
116        border-radius: 6px;
117        -moz-border-radius: 6px;
118        -webkit-border-radius: 6px;
119}
120
121.warning {
122        width: 90%;
123        margin: auto;
124        margin-top: 5px;
125        padding: 3px;
126        border: solid 2px #AA6666;
127        border-style: solid;
128        border-radius: 6px;
129        -moz-border-radius: 6px;
130        -webkit-border-radius: 6px;
131}
132
133.note {
134        text-indent: 0;
135        width: 90%;
136        margin: auto;
137        margin-top: 5px;
138        padding: 3px;
139        border: solid 1px #666699;
140        border-radius: 6px;
141        -moz-border-radius: 6px;
142        -webkit-border-radius: 6px;
143}
144
145
146/*
147 * table
148 */
149table { border-collapse: collapse; }
150table.table-pgwide { width: 100%; }
151td { vertical-align: top; }
152td { padding: 0.2em 0.83em 0.2em 0.83em; }
153th { padding: 0 0.83em 0 0.83em; }
154tr.tr-shade {
155  background-color: #e0e0e0;
156}
157td.td-colsep { border-right: solid 1px; }
158td.td-rowsep { border-bottom: solid 1px; }
159thead { border-top: solid 2px; border-bottom: solid 2px; }
160tfoot { border-top: solid 2px; border-bottom: solid 2px; }
161
162/*
163 * GUI Compornent (Vine original)
164 */
165.guimenu {
166        color: MenuText;
167        background-color: Menu;
168        border-style: outset;
169        border-width: 2px;
170}
171
172.guimenuitem {
173        color: MenuText;
174        background-color: Menu;
175        border-style: outset;
176        border-width: 2px;
177}
178
179.guibutton {
180        color: ButtonText;
181        background-color: ButtonFace;
182        border-style: outset;
183        border-color: ButtonShadow;
184        border-width: 2px;
185}
186
187.keycap {
188        margin: 3px 3px; 
189        padding: 1px 5px 1px 5px;
190        border-width: 1px 2px 2px 1px; 
191        border-style: solid; 
192        border-color: #999; 
193        background-color: #F5F5F5; 
194        font-family: monospace;
195        border-radius: 2px;
196        -moz-border-radius: 2px;
197        -webkit-border-radius: 2px;
198}
199
200.table  .keycap {
201        border-style: none;
202}
203
Note: See TracBrowser for help on using the repository browser.