|
30
|
1 |
/* |
|
|
2 |
* This file is part of the TraKERS\Front IDILL package. |
|
|
3 |
* |
|
|
4 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
|
5 |
* |
|
|
6 |
* For the full copyright and license information, please view the LICENSE |
|
|
7 |
* file that was distributed with this source code. |
|
|
8 |
*/ |
|
|
9 |
|
|
|
10 |
/* |
|
|
11 |
* Projet : TraKERS |
|
|
12 |
* Module : Front IDILL |
|
|
13 |
* Fichier : mosaic.less |
|
|
14 |
* |
|
|
15 |
* Auteur : alexandre.bastien@iri.centrepompidou.fr |
|
|
16 |
* |
|
|
17 |
* Fonctionnalités : Définit les propriétés d'apparence des éléments de base de la mosaïque (les snapshots, la mosaïque en elle-même). |
|
|
18 |
* |
|
|
19 |
* Avertissement : Afin que ce fichier puisse compiler, il est nécessaire de lancer index.html depuis un chemin ne commencant pas par file:///. |
|
|
20 |
* C'est pourquoi j'utilise WAMP pour le lancer. |
|
|
21 |
*/ |
|
|
22 |
|
|
52
|
23 |
/* Epaisseur de la bordure de la mosaique. */ |
|
30
|
24 |
@mosaic-border-tickness: 1px; |
|
52
|
25 |
/* Couleur de fond de la mosaique. */ |
|
30
|
26 |
@mosaic-background-color: #202020; |
|
52
|
27 |
/* Image de fond de la mosaique. */ |
|
30
|
28 |
@mosaic-background-image-path: url("../../img/background.png"); |
|
52
|
29 |
/* Image de fond de prezoom ou de sélection de voisin. */ |
|
30
|
30 |
@selected-snapshot-background-image-path: url("../../img/selected_background.png"); |
|
52
|
31 |
/* Couleur de fond des snapshots. */ |
|
30
|
32 |
@snapshots-background-color: #8D8D8D; |
|
52
|
33 |
/* Valeur de la marge des snapshots dans la mosaique. */ |
|
31
|
34 |
@snapshots-margin-value: 8px; |
|
52
|
35 |
/* Marges des snapshots. */ |
|
30
|
36 |
@snapshots-margin: @snapshots-margin-value @snapshots-margin-value @snapshots-margin-value @snapshots-margin-value; |
|
52
|
37 |
/* Couleur noire. */ |
|
30
|
38 |
@black: #000000; |
|
52
|
39 |
/* Image de notification de sélection. */ |
|
33
|
40 |
@notify-selection-background-image-path: url("../../pictos/notifications/selectionner.png"); |
|
52
|
41 |
/* Image de notification de recherche. */ |
|
33
|
42 |
@notify-search-background-image-path: url("../../pictos/notifications/rechercher.png"); |
|
55
|
43 |
/* Image de fond de la timeline. */ |
|
|
44 |
@timeline-background-image-path: url("../../img/timeline.png"); |
|
52
|
45 |
/* Image de notification de confirmation. */ |
|
33
|
46 |
@notify-point-background-image-path: url("../../pictos/notifications/confirmer.png"); |
|
52
|
47 |
/* Image de notification de déplacement dans la timeline. */ |
|
44
|
48 |
@notify-timeline-background-image-path: url("../../pictos/notifications/deplacer.png"); |
|
52
|
49 |
/* Couleur de fond du panneau d'aide. */ |
|
33
|
50 |
@notify-help-background-color: rgba(100, 100, 100, 0.9); |
|
52
|
51 |
/* Epaisseur de bordure du panneau d'aide. */ |
|
33
|
52 |
@notify-help-border-width: 2px; |
|
52
|
53 |
/* Valeur de marge du panneau d'aide. */ |
|
33
|
54 |
@notify-help-margin: 15px; |
|
52
|
55 |
/* Image de recherche du panneau d'aide. */ |
|
33
|
56 |
@notify-help-search-background-image-path: url("../../pictos/help/recherche.png"); |
|
52
|
57 |
/* Image de controle du panneau d'aide. */ |
|
33
|
58 |
@notify-help-controls-background-image-path: url("../../pictos/help/controles.png"); |
|
52
|
59 |
/* Image du pointeur principal. */ |
|
44
|
60 |
@mainPointer-background-image-path: url("../../img/cursors/pointer.png"); |
|
52
|
61 |
/* Image du pointeur secondaire. */ |
|
44
|
62 |
@secondPointer-background-image-path: url("../../img/cursors/pointer2.png"); |
|
35
|
63 |
|
|
|
64 |
html |
|
|
65 |
{ |
|
|
66 |
//cursor: none; |
|
|
67 |
} |
|
103
|
68 |
@font-face |
|
|
69 |
{ |
|
|
70 |
font-family: "PT Sans"; src: url(fonts/PT_Sans-Web-Regular.ttf); |
|
|
71 |
} |
|
|
72 |
|
|
|
73 |
@font-face |
|
|
74 |
{ |
|
|
75 |
font-family: "PT Sans"; font-weight: bold; src: url(fonts/PT_Sans-Web-Bold.ttf); |
|
|
76 |
} |
|
30
|
77 |
|
|
52
|
78 |
/* |
|
|
79 |
* Style du corps. |
|
|
80 |
*/ |
|
30
|
81 |
body |
|
|
82 |
{ |
|
33
|
83 |
overflow: hidden; |
|
30
|
84 |
background-color: @black; |
|
44
|
85 |
background-image: @mosaic-background-image-path; |
|
|
86 |
background-repeat: repeat; |
|
103
|
87 |
font-family: "PT Sans", sans-serif; |
|
30
|
88 |
} |
|
|
89 |
|
|
|
90 |
/* |
|
|
91 |
* Il s'agit des propriétés de la mosaïque en elle même. |
|
|
92 |
* On désactive les barres de défilement, on peut la placer à n'importe qu'elle position, elle doit être aussi large que la fenêtre du navigateur. |
|
|
93 |
* Son fond se répète. |
|
|
94 |
*/ |
|
|
95 |
#mainPanel |
|
|
96 |
{ |
|
|
97 |
overflow: hidden; |
|
|
98 |
position: absolute; |
|
|
99 |
width: 100%; |
|
|
100 |
top: 0px; |
|
|
101 |
left: 0px; |
|
44
|
102 |
background: transparent; |
|
|
103 |
//background-image: @mosaic-background-image-path; |
|
|
104 |
//background-repeat: repeat; |
|
30
|
105 |
} |
|
|
106 |
|
|
|
107 |
/* |
|
45
|
108 |
* C'est un div invisible qui s'étale sur l'écran afin d'empêcher l'utilisateur de faire des drag & drop sur les images ou de la sélection de texte. |
|
|
109 |
*/ |
|
|
110 |
#ghostPanel |
|
|
111 |
{ |
|
|
112 |
position: absolute; |
|
|
113 |
opacity: 0; |
|
|
114 |
width: 100%; |
|
|
115 |
height: 100%; |
|
52
|
116 |
z-index: 2000; |
|
45
|
117 |
} |
|
|
118 |
|
|
|
119 |
/* |
|
30
|
120 |
* Les divs contenant les snapshots (ou les "voisins" aussi en cas de zoom total). Ils se positionnent par défaut de gauche à droite, à l'horizontale et wrap dès |
|
|
121 |
* qu'ils ont atteint la bordure de fenêtre de droite. |
|
|
122 |
*/ |
|
|
123 |
.snapshotDivs, .neighbourDivs |
|
|
124 |
{ |
|
|
125 |
background-color: @black; |
|
|
126 |
margin: @snapshots-margin; |
|
|
127 |
float: left; |
|
|
128 |
} |
|
|
129 |
|
|
|
130 |
/* |
|
|
131 |
* Les snapshots sont des images, elles doivent remplir l'intégralité de leurs divs (snapshotDivs). |
|
|
132 |
*/ |
|
|
133 |
.snapshots |
|
|
134 |
{ |
|
|
135 |
width: 100%; |
|
|
136 |
height: 100%; |
|
|
137 |
} |
|
|
138 |
|
|
|
139 |
/* |
|
|
140 |
* Ce sont des divs créés spécialement lors d'un prézoom. Leur fonction est d'afficher un clone du snapshot, superposé au précédent et de grandir un peu de manière |
|
|
141 |
* à faire ressortir visuellement le snapshot pointé. Leur bordure est d'une couleur différente au fond, ce qui permet de les discerner plus facilement dans la mosaïque. |
|
|
142 |
* au départ, lors de sa création, il est caché, mais apparaît dès que l'image est chargée. |
|
|
143 |
*/ |
|
|
144 |
.prezoomContainers |
|
|
145 |
{ |
|
|
146 |
position: absolute; |
|
|
147 |
display: none; |
|
|
148 |
background-image: @selected-snapshot-background-image-path; |
|
|
149 |
background-repeat: repeat; |
|
|
150 |
} |
|
|
151 |
|
|
|
152 |
/* |
|
|
153 |
* Cette classe est attachée à des divs destinés à remplir les bordures d'une mosaïque locale. |
|
|
154 |
*/ |
|
|
155 |
.blacks |
|
|
156 |
{ |
|
|
157 |
background-color: @black; |
|
|
158 |
float: left; |
|
|
159 |
} |
|
|
160 |
|
|
|
161 |
/* |
|
|
162 |
* C'est une classe appliquée aux divs "voisins", afin de les colorer lorsque l'utilisateur intéragit avec eux. |
|
|
163 |
* Ils se positionnent exactement sur le voisin qu'ils représentent, à la manière du clone de prézoom (prezoomContainer), bien que celui-là n'est qu'un div simple |
|
|
164 |
* ne contenant pas d'image. |
|
|
165 |
* Au départ, l'opacité est à 0, ce qui signifie que ce div est invisible. L'opacité change lors d'intéractions avec cet objet. Le div apparaît alors. |
|
|
166 |
*/ |
|
31
|
167 |
.neighbourFrame |
|
|
168 |
{ |
|
|
169 |
position: absolute; |
|
|
170 |
//background-color: #94C6C5; |
|
|
171 |
//background-color: rgba(148, 198, 197, 1); |
|
|
172 |
background-image: @selected-snapshot-background-image-path; |
|
|
173 |
background-repeat: repeat; |
|
|
174 |
opacity: 0; |
|
|
175 |
} |
|
|
176 |
|
|
|
177 |
/* |
|
52
|
178 |
* Style du fond d'un snapshot de voisin. |
|
31
|
179 |
*/ |
|
|
180 |
.neighbourImgBg |
|
30
|
181 |
{ |
|
|
182 |
position: absolute; |
|
31
|
183 |
background-image: @mosaic-background-image-path; |
|
|
184 |
} |
|
|
185 |
|
|
|
186 |
/* |
|
52
|
187 |
* Style d'un snapshot de voisin. |
|
31
|
188 |
*/ |
|
|
189 |
.neighbourImg |
|
|
190 |
{ |
|
|
191 |
position: absolute; |
|
|
192 |
} |
|
|
193 |
|
|
52
|
194 |
/* |
|
|
195 |
* Style commun aux notifications. |
|
|
196 |
*/ |
|
33
|
197 |
.notifications |
|
|
198 |
{ |
|
|
199 |
position: absolute; |
|
44
|
200 |
width: 200px; |
|
|
201 |
height: 200px; |
|
33
|
202 |
background-repeat: no-repeat; |
|
|
203 |
background-position: 0px 0px; |
|
44
|
204 |
background-size: 200px 200px; |
|
33
|
205 |
opacity: 0; |
|
|
206 |
margin: 15px; |
|
79
|
207 |
z-index: 600; |
|
55
|
208 |
text-align: center; |
|
|
209 |
font-family: "DINMedium"; |
|
|
210 |
font-weight:10; |
|
|
211 |
font-size:30px; |
|
|
212 |
color: #fff; |
|
|
213 |
padding-top: 5px; |
|
33
|
214 |
} |
|
|
215 |
|
|
52
|
216 |
/* |
|
77
|
217 |
* Notifications affichées pendant une recherche en cours. |
|
|
218 |
*/ |
|
|
219 |
.notification_curves |
|
|
220 |
{ |
|
|
221 |
position: relative; |
|
|
222 |
float: left; |
|
|
223 |
width: 200px; |
|
|
224 |
height: 200px; |
|
|
225 |
background-repeat: no-repeat; |
|
|
226 |
background-position: 0px 0px; |
|
|
227 |
background-size: 200px 200px; |
|
|
228 |
opacity: 0; |
|
|
229 |
margin: 15px; |
|
79
|
230 |
z-index: 600; |
|
77
|
231 |
text-align: center; |
|
|
232 |
font-family: "DINMedium"; |
|
|
233 |
font-weight:10; |
|
|
234 |
font-size:30px; |
|
|
235 |
color: #fff; |
|
|
236 |
padding-top: 5px; |
|
|
237 |
} |
|
|
238 |
|
|
|
239 |
/* |
|
52
|
240 |
* Style commun aux notifications lors d'une recherche par courbes en cours. |
|
|
241 |
*/ |
|
35
|
242 |
.notifications_inSearch |
|
|
243 |
{ |
|
|
244 |
position: relative; |
|
|
245 |
float: left; |
|
|
246 |
width: 100px; |
|
|
247 |
height: 100px; |
|
|
248 |
background-repeat: no-repeat; |
|
|
249 |
background-position: 0px 0px; |
|
|
250 |
background-size: 100px 100px; |
|
|
251 |
opacity: 0; |
|
|
252 |
margin: 15px; |
|
79
|
253 |
z-index: 600; |
|
35
|
254 |
} |
|
|
255 |
|
|
52
|
256 |
/* |
|
|
257 |
* Div contenant les notifications lors d'une recherche par courbes en cours. |
|
|
258 |
*/ |
|
35
|
259 |
.notifications_inSearch_container |
|
|
260 |
{ |
|
|
261 |
position: absolute; |
|
|
262 |
background-color: #fff; |
|
|
263 |
background: transparent; |
|
|
264 |
} |
|
|
265 |
|
|
52
|
266 |
/* |
|
77
|
267 |
* Container pour les notifications de courbes lors d'un tracé en cours. |
|
|
268 |
*/ |
|
|
269 |
#notify_curves_container |
|
|
270 |
{ |
|
|
271 |
position: absolute; |
|
|
272 |
width: 100%; |
|
|
273 |
} |
|
|
274 |
|
|
|
275 |
/* |
|
52
|
276 |
* Notification de sélection. |
|
|
277 |
*/ |
|
33
|
278 |
#notify_selection |
|
|
279 |
{ |
|
|
280 |
background-image: @notify-selection-background-image-path; |
|
|
281 |
} |
|
|
282 |
|
|
52
|
283 |
/* |
|
|
284 |
* Notification de recherche. |
|
|
285 |
*/ |
|
33
|
286 |
#notify_search |
|
|
287 |
{ |
|
|
288 |
background-image: @notify-search-background-image-path; |
|
|
289 |
} |
|
|
290 |
|
|
52
|
291 |
/* |
|
|
292 |
* Notification de confirmation. |
|
|
293 |
*/ |
|
33
|
294 |
#notify_point |
|
|
295 |
{ |
|
|
296 |
background-image: @notify-point-background-image-path; |
|
|
297 |
} |
|
|
298 |
|
|
52
|
299 |
/* |
|
|
300 |
* Notification de déplacement dans la timeline. |
|
|
301 |
*/ |
|
44
|
302 |
#notify_timeline |
|
|
303 |
{ |
|
|
304 |
background-image: @notify-timeline-background-image-path; |
|
|
305 |
} |
|
|
306 |
|
|
33
|
307 |
/* |
|
52
|
308 |
* Panneau d'aide |
|
33
|
309 |
*/ |
|
89
|
310 |
#notify_help |
|
33
|
311 |
{ |
|
|
312 |
position: absolute; |
|
|
313 |
margin: @notify-help-margin; |
|
|
314 |
border-style: solid; |
|
|
315 |
border-width: @notify-help-border-width; |
|
|
316 |
border-color: #fff; |
|
100
|
317 |
color: #fff; |
|
33
|
318 |
background-color: @notify-help-background-color; |
|
|
319 |
} |
|
|
320 |
|
|
52
|
321 |
/* |
|
89
|
322 |
* Crédits |
|
|
323 |
*/ |
|
|
324 |
#notify_credits |
|
|
325 |
{ |
|
|
326 |
position: absolute; |
|
|
327 |
margin: @notify-help-margin; |
|
|
328 |
padding: @notify-help-margin; |
|
|
329 |
border-style: solid; |
|
|
330 |
border-width: @notify-help-border-width; |
|
|
331 |
border-color: #fff; |
|
|
332 |
background-color: #D1D2D4; |
|
|
333 |
} |
|
|
334 |
|
|
|
335 |
/* |
|
|
336 |
* Flèches pour naviguer dans les crédits. |
|
|
337 |
*/ |
|
93
|
338 |
.credits_arrows, .help_details_arrows |
|
89
|
339 |
{ |
|
|
340 |
position: absolute; |
|
|
341 |
width: 50px; |
|
|
342 |
height: 50px; |
|
|
343 |
background-size: 50px 50px; |
|
|
344 |
background-repeat: no-repeat; |
|
|
345 |
opacity: 0; |
|
100
|
346 |
z-index: 1100; |
|
89
|
347 |
} |
|
|
348 |
|
|
|
349 |
/* |
|
|
350 |
* Flèche du haut pour naviguer dans les crédits. |
|
|
351 |
*/ |
|
|
352 |
#credits_upArrow |
|
|
353 |
{ |
|
|
354 |
background-image: url('../../img/upArrow.png'); |
|
|
355 |
} |
|
|
356 |
|
|
|
357 |
/* |
|
|
358 |
* Flèche du bas pour naviguer dans les crédits. |
|
|
359 |
*/ |
|
|
360 |
#credits_downArrow |
|
|
361 |
{ |
|
|
362 |
background-image: url('../../img/downArrow.png'); |
|
|
363 |
} |
|
|
364 |
|
|
|
365 |
/* |
|
93
|
366 |
* Flèche du haut pour naviguer dans les détails du panneau d'aide. |
|
|
367 |
*/ |
|
|
368 |
#help_details_upArrow |
|
|
369 |
{ |
|
|
370 |
background-image: url('../../img/upArrow.png'); |
|
|
371 |
} |
|
|
372 |
|
|
|
373 |
/* |
|
|
374 |
* Flèche du bas pour naviguer dans les détails du panneau d'aide. |
|
|
375 |
*/ |
|
|
376 |
#help_details_downArrow |
|
|
377 |
{ |
|
|
378 |
background-image: url('../../img/downArrow.png'); |
|
|
379 |
} |
|
|
380 |
|
|
|
381 |
/* |
|
52
|
382 |
* Colonne de recherche du panneau d'aide. |
|
|
383 |
*/ |
|
33
|
384 |
#help_search |
|
|
385 |
{ |
|
|
386 |
float: left; |
|
|
387 |
top: 0%; |
|
|
388 |
width: 50%; |
|
|
389 |
height: 100%; |
|
|
390 |
background: transparent; |
|
|
391 |
} |
|
|
392 |
|
|
52
|
393 |
/* |
|
|
394 |
* Colonne des controles du panneau d'aide. |
|
|
395 |
*/ |
|
33
|
396 |
#help_controls |
|
|
397 |
{ |
|
|
398 |
float: left; |
|
|
399 |
top: 0%; |
|
|
400 |
width: 50%; |
|
|
401 |
height: 100%; |
|
|
402 |
background: transparent; |
|
|
403 |
} |
|
|
404 |
|
|
52
|
405 |
/* |
|
|
406 |
* Séparateur vertical du panneau d'aide. |
|
|
407 |
*/ |
|
33
|
408 |
#help_sep |
|
|
409 |
{ |
|
|
410 |
position: absolute; |
|
|
411 |
top: 10%; |
|
|
412 |
left: 50%; |
|
|
413 |
width: 1px; |
|
|
414 |
height: 80%; |
|
|
415 |
background-color: #fff; |
|
|
416 |
} |
|
|
417 |
|
|
52
|
418 |
/* |
|
|
419 |
* Titres des colonnes du panneau d'aide. |
|
|
420 |
*/ |
|
33
|
421 |
#search_title, #controls_title |
|
|
422 |
{ |
|
|
423 |
position: relative; |
|
|
424 |
color: #fff; |
|
|
425 |
//font-family: DIN-Medium, Fallback, sans-serif; |
|
|
426 |
font-size: 30px; |
|
|
427 |
text-align: center; |
|
|
428 |
font-weight: bold; |
|
|
429 |
margin-top: 15px; |
|
|
430 |
margin-bottom: 15px; |
|
|
431 |
} |
|
|
432 |
|
|
52
|
433 |
/* |
|
|
434 |
* Image de recherche du panneau d'aide. |
|
|
435 |
*/ |
|
33
|
436 |
#search_img |
|
|
437 |
{ |
|
|
438 |
background-image: @notify-help-search-background-image-path; |
|
44
|
439 |
background-repeat: no-repeat; |
|
33
|
440 |
background-position: center center; |
|
44
|
441 |
width: 100%; |
|
|
442 |
height: 225px; |
|
33
|
443 |
} |
|
|
444 |
|
|
52
|
445 |
/* |
|
|
446 |
* Image des controles du panneau d'aide. |
|
|
447 |
*/ |
|
33
|
448 |
#controls_img |
|
|
449 |
{ |
|
|
450 |
background-image: @notify-help-controls-background-image-path; |
|
44
|
451 |
background-repeat: no-repeat; |
|
33
|
452 |
background-position: center center; |
|
44
|
453 |
width: 100%; |
|
|
454 |
height: 225px; |
|
33
|
455 |
} |
|
|
456 |
|
|
52
|
457 |
/* |
|
|
458 |
* Textes des zones de recherche et controles du panneau d'aide. |
|
|
459 |
*/ |
|
33
|
460 |
#search_2hands_text, #search_body_text, #controls_1hand_text |
|
|
461 |
{ |
|
|
462 |
position: relative; |
|
|
463 |
clear: both; |
|
|
464 |
color: #fff; |
|
|
465 |
//font-family: DIN-Medium, Fallback, sans-serif; |
|
55
|
466 |
font-size: 20px; |
|
33
|
467 |
text-align: center; |
|
|
468 |
font-weight: bold; |
|
|
469 |
margin-top: 10px; |
|
|
470 |
margin-bottom: 10px; |
|
|
471 |
} |
|
|
472 |
|
|
52
|
473 |
/* |
|
|
474 |
* Images des gestures de recherche et controles du panneau d'aide. |
|
|
475 |
*/ |
|
33
|
476 |
.notify_imgs_small |
|
|
477 |
{ |
|
|
478 |
float: left; |
|
55
|
479 |
width: 120px; |
|
|
480 |
height: 120px; |
|
33
|
481 |
background-position: 0px 0px; |
|
|
482 |
background-repeat: no-repeat; |
|
|
483 |
margin: 4px; |
|
55
|
484 |
text-align: center; |
|
|
485 |
font-family: "DINMedium"; |
|
|
486 |
font-weight:10; |
|
|
487 |
font-size:20px; |
|
|
488 |
color: #fff; |
|
|
489 |
padding: 5px; |
|
35
|
490 |
} |
|
|
491 |
|
|
52
|
492 |
/* |
|
|
493 |
* Masques de non sélection qui s'appliquent sur une mosaique filtrée. |
|
|
494 |
*/ |
|
35
|
495 |
.filterHiders |
|
|
496 |
{ |
|
|
497 |
position: absolute; |
|
|
498 |
background-color: #fff; |
|
|
499 |
background: transparent; |
|
|
500 |
} |
|
|
501 |
|
|
52
|
502 |
/* |
|
|
503 |
* Style du pointeur principal. |
|
|
504 |
*/ |
|
35
|
505 |
#mainPointer |
|
|
506 |
{ |
|
|
507 |
position: absolute; |
|
|
508 |
width: 74px; |
|
|
509 |
height: 74px; |
|
|
510 |
background-image: @mainPointer-background-image-path; |
|
|
511 |
background-position: 0px 0px; |
|
|
512 |
background-repeat: no-repeat; |
|
|
513 |
z-index: 500; |
|
44
|
514 |
opacity: 0; |
|
|
515 |
} |
|
|
516 |
|
|
52
|
517 |
/* |
|
|
518 |
* Style du pointeur secondaire. |
|
|
519 |
*/ |
|
44
|
520 |
#secondPointer |
|
|
521 |
{ |
|
|
522 |
position: absolute; |
|
|
523 |
width: 74px; |
|
|
524 |
height: 74px; |
|
|
525 |
background-image: @secondPointer-background-image-path; |
|
|
526 |
background-position: 0px 0px; |
|
|
527 |
background-repeat: no-repeat; |
|
|
528 |
z-index: 500; |
|
|
529 |
opacity: 0; |
|
|
530 |
} |
|
|
531 |
|
|
52
|
532 |
/* |
|
|
533 |
* Style des voisins additionnels. |
|
|
534 |
*/ |
|
44
|
535 |
.borderNeighbours |
|
|
536 |
{ |
|
|
537 |
position: absolute; |
|
|
538 |
background-color: #fff; |
|
|
539 |
margin: @snapshots-margin; |
|
|
540 |
//background-image: @mosaic-background-image-path; |
|
|
541 |
background-color: @black; |
|
|
542 |
background-repeat: repeat; |
|
|
543 |
background-position: 0px 0px; |
|
55
|
544 |
} |
|
|
545 |
|
|
|
546 |
/* |
|
|
547 |
* Icone permettant d'afficher l'aide dans le mode d'interaction souris. |
|
|
548 |
*/ |
|
85
|
549 |
#helpIcon, #creditsIcon, #exitIcon, #homeIcon, #searchExitIcon |
|
55
|
550 |
{ |
|
|
551 |
width: 50px; |
|
|
552 |
height: 50px; |
|
|
553 |
position: absolute; |
|
|
554 |
margin: 20px; |
|
89
|
555 |
} |
|
|
556 |
|
|
|
557 |
#credits_title |
|
|
558 |
{ |
|
|
559 |
font-weight: bold; |
|
|
560 |
font-size: 30px; |
|
|
561 |
} |
|
|
562 |
|
|
|
563 |
#credits_subtitle |
|
|
564 |
{ |
|
103
|
565 |
font-size: 16px; |
|
89
|
566 |
} |
|
|
567 |
|
|
|
568 |
.credits_film |
|
|
569 |
{ |
|
|
570 |
font-weight: bold; |
|
|
571 |
font-size: 22px; |
|
|
572 |
} |
|
|
573 |
|
|
|
574 |
.credits_body |
|
|
575 |
{ |
|
|
576 |
font-size: 20px; |
|
|
577 |
} |
|
|
578 |
|
|
|
579 |
.credits_text |
|
|
580 |
{ |
|
|
581 |
color: #000000; |
|
103
|
582 |
} |
|
|
583 |
#help_details_left_container table td, #help_details_right_container table td{ |
|
|
584 |
padding-right: 10px; |
|
30
|
585 |
} |