Mercurial > geeqie.yaz
annotate doc/style.css @ 1151:c564ab6c11fc
Add specific css for print media(has to be improved).
author | zas_ |
---|---|
date | Sun, 16 Nov 2008 19:58:43 +0000 |
parents | e0d275b9ebaa |
children | 0186f9c7d9e4 |
rev | line source |
---|---|
1113 | 1 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |
2 | |
1095 | 3 /* common */ |
1113 | 4 body { |
5 margin: 2em; | |
6 padding: 0; | |
7 color: #000; | |
8 background-color: #eee; | |
9 font-family: "Trebuchet MS", Verdana, "Lucida Grande", Tahoma, Helvetica, Sans-Serif; | |
10 } | |
11 | |
1122 | 12 table { |
13 page-break-before: always; | |
14 } | |
1117 | 15 |
1122 | 16 a:hover { |
17 background-color: white; | |
18 } | |
1118 | 19 |
1122 | 20 a.bottomnote { |
21 text-decoration: none; | |
22 color: black; | |
23 } | |
1118 | 24 |
1122 | 25 .option_name { |
26 font-variant: small-caps; | |
27 font-size: 90%; | |
28 font-weight: bold; | |
29 } | |
1117 | 30 |
1122 | 31 dt { |
32 font-weight: bold; | |
33 } | |
1118 | 34 |
1122 | 35 /* Previous + Next */ |
1113 | 36 p.previous { |
1122 | 37 text-align: left; |
1113 | 38 } |
39 p.navtop_title { | |
40 text-align: center; | |
41 font-weight:bold; | |
42 } | |
43 p.navbottom_title { | |
44 text-align: center; | |
45 } | |
46 | |
47 p.next { | |
1122 | 48 text-align: right; |
1113 | 49 } |
1105 | 50 |
1113 | 51 div.navtop { |
1122 | 52 text-align: center; |
1113 | 53 } |
1115 | 54 |
1113 | 55 div.navbottom { |
1122 | 56 text-align: center; |
1113 | 57 } |
58 | |
1122 | 59 /* Headings */ |
1113 | 60 h1 { |
61 margin-top: 1.3em; | |
62 margin-bottom: 1.3em; | |
63 color: #820303; | |
1122 | 64 background: #effefe; |
1113 | 65 } |
66 | |
67 h2 { | |
68 margin-top: 1em; | |
69 margin-bottom: 1em; | |
70 color: #5A0202; | |
1122 | 71 background: #f6fefe; |
1113 | 72 } |
73 | |
74 h3 { | |
75 margin-top: 0.7em; | |
76 margin-bottom: 0.7em; | |
77 color: #270101; | |
1122 | 78 background: #f8fefe; |
1113 | 79 } |
1105 | 80 |
1113 | 81 hr#bottomseparator { |
82 margin-top: 6em; | |
83 } | |
84 | |
85 div.bottomspacer { | |
86 margin-bottom: 5em; | |
87 } | |
1115 | 88 |
1113 | 89 div.footer { |
1122 | 90 text-align: right; |
1113 | 91 } |
92 | |
93 /* menu descriptions */ | |
94 dl.menu_desc { | |
95 margin-left: 2em; | |
96 } | |
97 .menu_desc dt { | |
98 font-weight: bold; | |
1135 | 99 padding: 0.1em; |
100 border-left: 1px solid gray; | |
101 border-bottom: 1px solid gray; | |
102 display: inline; | |
103 vertical-align: top; | |
1113 | 104 } |
1122 | 105 .menu_desc dd { |
1135 | 106 margin-top: 0.3em; |
107 margin-bottom: 0.3em; | |
108 font-size: small; | |
109 } | |
110 | |
111 .menu_desc dd dl { | |
112 margin-top: 0.7em; | |
113 margin-bottom: 0.7em; | |
114 } | |
115 | |
116 .menu_desc dd dl dd { | |
117 font-size: small; | |
1122 | 118 } |
1095 | 119 |
1113 | 120 /* dialog descriptions */ |
121 dl.dialog_desc { | |
122 margin-left: 2em; | |
1120 | 123 margin-bottom: 1em; |
1113 | 124 } |
125 .dialog_desc dt { | |
126 display: inline; | |
127 padding-left: 0.1em; | |
128 padding-right: 0.1em; | |
129 font-weight: bold; | |
130 margin-top: 0.3em; | |
1122 | 131 border: 1px solid white; |
1113 | 132 } |
1122 | 133 .dialog_desc dd { |
134 margin-bottom: 0.7em; | |
135 } | |
1113 | 136 .dialog_desc dd dl { |
137 font-size: 90%; | |
138 margin-bottom: 1em; | |
139 } | |
1106 | 140 |
1113 | 141 thead { |
142 font-weight: bold; | |
143 } | |
144 | |
145 p.note { | |
1122 | 146 font-style: italic; |
1113 | 147 } |
148 .note em { | |
1122 | 149 font-weight: bold; |
1113 | 150 } |
151 | |
1118 | 152 p.bottomnote { |
153 margin-top: 5em; | |
154 font-style: italic; | |
1122 | 155 font-size: 90%; |
1118 | 156 } |
157 .bottomnote em { | |
1122 | 158 font-weight: bold; |
1118 | 159 } |
160 | |
161 span.note_label { | |
162 font-weight: bold; | |
163 } | |
164 | |
1113 | 165 code { |
1118 | 166 margin-left: 0.3em; |
167 padding: 0.1em; | |
1122 | 168 background: white; |
1113 | 169 } |
1107 | 170 |
1124 | 171 .submenu li { |
172 margin: 0.4em; | |
173 list-style-type: circle; | |
174 } | |
175 | |
1125
e09f504d7f11
Update documentation a bit: General, Image, Windows, Filtering, Editors and a part of Advanced (Image Overlay) options.
zas_
parents:
1124
diff
changeset
|
176 .examples dt { |
e09f504d7f11
Update documentation a bit: General, Image, Windows, Filtering, Editors and a part of Advanced (Image Overlay) options.
zas_
parents:
1124
diff
changeset
|
177 border: 0; |
e09f504d7f11
Update documentation a bit: General, Image, Windows, Filtering, Editors and a part of Advanced (Image Overlay) options.
zas_
parents:
1124
diff
changeset
|
178 } |
e09f504d7f11
Update documentation a bit: General, Image, Windows, Filtering, Editors and a part of Advanced (Image Overlay) options.
zas_
parents:
1124
diff
changeset
|
179 |
1095 | 180 /* collections.html */ |
1122 | 181 div.collections-shortcuts { |
182 text-align: center; | |
183 } | |
184 .collections-shortcuts p { | |
185 margin: 0.1em; | |
186 } | |
1095 | 187 |
188 /* image_presentation_fullscreen.html */ | |
1122 | 189 div.fullscreen-shortcuts { |
190 text-align: center; | |
191 } | |
1127 | 192 .fullscreen-shortcuts p { |
193 margin: 0.1em; | |
194 } | |
195 td.fullscreen-shortcuts-separator { | |
196 background-color: white; | |
197 font-size: 110%; | |
198 } | |
199 | |
1122 | 200 div.fullscreen-functions { |
201 text-align: center; | |
202 } | |
1127 | 203 .fullscreen-functions p { |
204 margin: 0.1em; | |
205 } | |
1095 | 206 |
207 /* image_search_finding_duplicates.html */ | |
1122 | 208 div.find-duplicates-shortcuts { |
209 text-align: center; | |
210 } | |
1123
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
211 .find-duplicates-shortcuts p { |
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
212 margin: 0.1em; |
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
213 } |
1095 | 214 |
215 /* image_search_search.html */ | |
1122 | 216 div.search-shortcuts { |
217 text-align: center; | |
218 } | |
1123
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
219 .search-shortcuts p { |
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
220 margin: 0.1em; |
aeb8360c2e2c
Cosmetic changes in image search and find duplicates shortcuts tables.
zas_
parents:
1122
diff
changeset
|
221 } |
1095 | 222 |
223 /* index.html */ | |
1122 | 224 .menu ul { |
225 font-size: 110%; | |
226 font-weight: bold; | |
227 margin: 1em; | |
1124 | 228 list-style-type: disc; |
1122 | 229 } |
230 .menu ul li { | |
231 margin: 0.4em; | |
232 } | |
233 .menu ul li ul { | |
234 font-size: 90%; | |
235 font-weight: normal; | |
1124 | 236 list-style-type: circle; |
1122 | 237 } |
238 | |
239 /* reference_command_line.html */ | |
240 .command_line_options p { | |
241 margin: 0.1em; | |
242 } | |
243 .remote_commands p { | |
244 margin: 0.1em; | |
245 } | |
1095 | 246 |
247 /* reference_keyboard_shortcuts.html */ | |
1122 | 248 div.keyboard-shortcuts { |
249 text-align: center; | |
250 } | |
251 .keyboard-shortcuts p { | |
252 margin: 0.1em; | |
253 } | |
254 td.keyboard-shortcuts-separator { | |
255 background-color: white; | |
256 font-size: 110%; | |
257 } | |
258 .keyboard-shortcuts td+td+td { | |
259 text-align: left; | |
260 } | |
1119 | 261 |
262 /* reference_management.html */ | |
263 .file_locations_subtitle { | |
264 font-weight: bold; | |
265 background-color: white; | |
266 text-align: center; | |
267 } | |
1122 | 268 .file_locations p { |
269 margin: 0.1em; | |
270 } | |
1119 | 271 |