Subversion Repositories eFlore/Applications.cel

Rev

Rev 1447 | Rev 1450 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
479 jpm 1
@charset "UTF-8";
521 jpm 2
html {
3
	overflow:hidden;
4
}
5
body {
6
	overflow:hidden;
7
	padding:0;
479 jpm 8
	margin:0;
521 jpm 9
	width:100%;
10
	height:100%;
479 jpm 11
	font-family:Arial;
12
	font-size:12px;
13
}
492 jpm 14
h1 {
15
	font-size:1.6em;
16
}
17
h2 {
18
	font-size:1.4em;
19
}
501 jpm 20
a, a:active, a:visited {
21
	border-bottom:1px dotted #666;
22
	color:#CCC;
23
	text-decoration:none;
24
}
25
a:active {
26
	outline:none;
27
}
28
a:focus {
29
	outline:thin dotted;
30
}
31
a:hover {
32
	color:#56B80E;
33
	border-bottom:1px dotted #56B80E;
34
}
1447 aurelien 35
img {
36
	border:none;
37
}
479 jpm 38
/*+-----------------------------------------------------------------------------------------------------------------+*/
572 jpm 39
/* Présentation des listes de définitions */
40
dl {
41
	width:100%;
953 jpm 42
	margin:0;
572 jpm 43
}
44
dt {
45
	float:left;
46
	font-weight:bold;
47
	text-align:top left;
48
	margin-right:0.3em;
953 jpm 49
	line-height:0.8em;
572 jpm 50
}
51
dd {
52
	width:auto;
53
	margin:0.5em 0;
953 jpm 54
	line-height:0.8em;
572 jpm 55
}
56
/*+-----------------------------------------------------------------------------------------------------------------+*/
57
/* Tableau : */
58
table {
59
	border:1px solid gray;
60
	border-collapse:collapse;
939 jpm 61
	width:100%;
572 jpm 62
}
63
table thead, table tfoot, table tbody {
64
	background-color:Gainsboro;
65
	border:1px solid gray;
66
}
67
table tbody {
68
	background-color:#FFF;
69
}
70
table th {
71
	font-family:monospace;
72
	border:1px dotted gray;
73
	padding:5px;
74
	background-color:Gainsboro;
75
}
76
table td {
77
	font-family:arial;
78
	border:1px dotted gray;
79
	padding:5px;
80
	text-align:left;
81
}
82
table caption {
83
	font-family:sans-serif;
84
}
85
/*+-----------------------------------------------------------------------------------------------------------------+*/
86
/* Tableau : tablesorter */
87
th.header {
88
	background:url(../images/trie.png) no-repeat center right;
89
	padding-right:20px;
90
}
91
th.headerSortUp {
92
	background:url(../images/trie_croissant.png) no-repeat center right #56B80E;
93
	color:white;
94
}
95
th.headerSortDown {
96
    background:url(../images/trie_decroissant.png) no-repeat center right #56B80E;
97
    color:white;
98
}
99
/*+-----------------------------------------------------------------------------------------------------------------+*/
100
/* Générique */
101
.nettoyage{
102
	clear:both;
103
}
104
hr.nettoyage{
105
	visibility:hidden;
106
}
1447 aurelien 107
 
108
.element-overlay {
109
	background-color: #DDDDDD;
110
	border:1px solid grey;
111
}
572 jpm 112
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 113
/* Carte */
114
#carte {
521 jpm 115
	padding:0;
116
	margin:0;
117
	position:absolute;
118
	right:0;
119
	bottom:0;
120
	overflow:auto;
1442 aurelien 121
	width: 100%;
479 jpm 122
}
1438 aurelien 123
 
124
.carte_titree {
125
	top:35px;
126
}
127
 
128
.carte_non_titre {
129
	top:0px;
130
}
131
 
479 jpm 132
.bouton {
133
	background-color:white;
134
	border:2px solid black;
135
	cursor:pointer;
136
	text-align:center;
137
}
138
/*+-----------------------------------------------------------------------------------------------------------------+*/
139
/* Message de chargement */
1447 aurelien 140
 
141
#zone-chargement-point {
142
	display: none;
143
	background-color: white;
144
    height: 70px;
145
    padding: 10px;
146
    position: fixed;
147
    text-align: center;
148
    width: 230px;
149
    z-index: 3000;
150
}
151
 
479 jpm 152
#chargement {
915 jpm 153
	margin:25px;
154
	text-align:center;
1447 aurelien 155
 
479 jpm 156
}
915 jpm 157
#chargement img{
479 jpm 158
	display:block;
159
	margin:auto;
160
}
1442 aurelien 161
 
162
#message-aucune-obs p {
163
	padding-top : 25px;
164
	font-weight: bold;
165
}
166
 
167
#message-aucune-obs {
168
	background-image: url("../images/attention.png");
169
    background-position: 50% 10px;
170
	background-repeat:  no-repeat;
1447 aurelien 171
	display: none;
172
    height: 70px;
173
    padding: 10px;
174
    position: fixed;
175
    text-align: center;
176
    width: 230px;
177
    z-index: 3000;
1442 aurelien 178
}
179
 
479 jpm 180
/*+-----------------------------------------------------------------------------------------------------------------+*/
501 jpm 181
/* Avertissement */
182
#zone-avertissement {
521 jpm 183
	background-color:#4A4B4C;
503 jpm 184
	color:#CCC;
185
	padding:12px;
186
	text-align:justify;
521 jpm 187
	line-height:16px;
501 jpm 188
}
503 jpm 189
#zone-avertissement h1{
190
	margin:0;
501 jpm 191
}
521 jpm 192
#zone-avertissement a {
193
	border-bottom:1px dotted gainsboro;
194
}
501 jpm 195
/*+-----------------------------------------------------------------------------------------------------------------+*/
492 jpm 196
/* Carte titre */
1442 aurelien 197
 
198
#zone-titre {
199
	top: 30px;
200
}
201
 
1438 aurelien 202
#zone-titre, #zone_stats {
521 jpm 203
	padding:0;
1447 aurelien 204
	position:absolute;
1438 aurelien 205
	height:25px;
521 jpm 206
	overflow:hidden;
1438 aurelien 207
	border-radius: 4px;
208
	z-index: 3000;
209
	display: inline-block;
210
	padding:8px;
211
	color: black;
212
    font-family: inherit;
213
    font-size: 1.1em;
214
    font-weight: bold;
215
    text-rendering: optimizelegibility;
216
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
501 jpm 217
}
1438 aurelien 218
 
501 jpm 219
#zone-info {
513 jpm 220
	position:absolute;
1445 aurelien 221
	top:26px;
222
	z-index:3001;
513 jpm 223
	right:8px;
1445 aurelien 224
    width: 25px;
501 jpm 225
	text-align:right;
1445 aurelien 226
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
227
 	border-radius: 5px 5px 5px 5px;
501 jpm 228
}
1445 aurelien 229
 
230
#zone-info a {
231
	border: none;
232
}
233
 
1447 aurelien 234
 
235
#logo {
236
    left: 2px;
237
    padding: 4px;
238
    position: absolute;
239
    top: 5px;
240
    z-index: 3002;
501 jpm 241
}
1447 aurelien 242
 
243
#logo a {
244
	border-bottom: none;
245
}
246
 
492 jpm 247
#carte-titre {
501 jpm 248
	display:inline-block;
939 jpm 249
	margin:0;
1438 aurelien 250
	padding:0em;
492 jpm 251
}
513 jpm 252
#carte-titre {/*Hack CSS  fonctionne seulement dans ie6, 7 & 8 */
253
	display:inline !hackCssIe6Et7;/*Hack CSS pour ie6 & ie7 */
254
	display /*\**/:inline\9;/*Hack CSS pour ie8 */
255
}
1449 aurelien 256
 
257
#image-utilisateur {
258
    position: absolute;
259
    right: 5px;
260
    top: 40%;
261
}
262
 
492 jpm 263
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 264
/* Panneau latéral */
265
#panneau-lateral {
266
	padding:0;
521 jpm 267
	margin:0;
268
	position:absolute;
1447 aurelien 269
   	top: 75px;
521 jpm 270
	left:0;
271
	bottom:0;
1438 aurelien 272
	width: 83px;
521 jpm 273
	overflow:hidden;
1447 aurelien 274
	height: 25px;
1442 aurelien 275
	z-index: 3001;
1438 aurelien 276
	border-top-right-radius : 10px;
277
	border-bottom-right-radius : 10px;
521 jpm 278
}
1438 aurelien 279
#pl-indication-filtre {
280
	margin-left	: 25px;
281
	padding : 3px;
1447 aurelien 282
	font-weight: bold;
1449 aurelien 283
	padding: 3px;
284
    position: relative;
285
    top: 3px;
1438 aurelien 286
}
521 jpm 287
#pl-contenu {
479 jpm 288
	display:none;
289
}
290
#pl-entete {
521 jpm 291
	height:95px;
479 jpm 292
}
293
#pl-corps {
521 jpm 294
	bottom:0;
479 jpm 295
	overflow:auto;
296
	padding:5px;
489 jpm 297
	width:290px;
479 jpm 298
}
299
#pl-ouverture, #pl-fermeture {
521 jpm 300
	position:absolute;
479 jpm 301
	top:0;
1438 aurelien 302
	height:60px;
521 jpm 303
	width:24px;
479 jpm 304
	text-align:center;
305
	cursor:pointer;
306
}
307
#pl-ouverture {
521 jpm 308
	left:0;
309
	background:url(../images/ouverture.png) no-repeat top left #4A4B4C;
939 jpm 310
	height:100%;
479 jpm 311
}
312
#pl-fermeture {
521 jpm 313
	display:none;
1445 aurelien 314
    right: 0;
521 jpm 315
	background:url(../images/fermeture.png) no-repeat top right #4A4B4C;
479 jpm 316
}
492 jpm 317
#pl-ouverture span, #pl-fermeture span{
318
	display:none;
319
}
320
/* Panneau latéral : balises */
321
#panneau-lateral h2, #panneau-lateral p {
1438 aurelien 322
	color:black;}
479 jpm 323
/*+-----------------------------------------------------------------------------------------------------------------+*/
492 jpm 324
/* Liste des taxons de la carte */
325
#taxons {
1438 aurelien 326
	color:black;
492 jpm 327
}
1447 aurelien 328
#taxons .taxon-actif, #taxons .taxon-actif span, .raz-filtre-taxons.taxon-actif {
836 jpm 329
	color:#56B80E;
330
}
1445 aurelien 331
#taxons li span, .raz-filtre-taxons {
836 jpm 332
	border-bottom:1px dotted #666;
1438 aurelien 333
	color:black;
836 jpm 334
}
335
#taxons li span:focus {
336
	outline:thin dotted;
337
}
338
#taxons li span:hover {
339
	color:#56B80E;
340
	border-bottom:1px dotted #56B80E;
341
	cursor:pointer;
342
}
343
.nt {
344
	display:none;
345
}
1445 aurelien 346
.raz-filtre-taxons {
347
	cursor:pointer;
348
}
492 jpm 349
/*+-----------------------------------------------------------------------------------------------------------------+*/
1438 aurelien 350
/* Zone des stats en bas */
351
#zone-stats {
352
	padding:0;
353
	position:absolute;
354
	height:25px;
1445 aurelien 355
	bottom:20px;
1438 aurelien 356
	overflow:hidden;
357
	border-radius: 4px;
358
	z-index: 3000;
359
	display: inline-block;
360
	padding:8px;
361
	color: black;
362
    font-family: inherit;
363
    font-size: 1.1em;
364
    font-weight: bold;
365
    text-rendering: optimizelegibility;
366
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
367
}
368
 
369
#zone-stats h1 {
370
	margin-top: 0;
371
}
372
 
1447 aurelien 373
#lien_plein_ecran, #lien-voir-cc {
374
    position: absolute;
1442 aurelien 375
    z-index: 3000;
376
	border-radius: 4px;
377
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
378
    padding: 8px 8px 4px;
379
    font-size: 1.1em;
380
    font-weight: bold;
381
}
382
 
383
#lien_plein_ecran {
1445 aurelien 384
    bottom: 20px;
1442 aurelien 385
    left: 5px;
386
}
387
 
1447 aurelien 388
#lien_plein_ecran a, #lien-voir-cc a {
1442 aurelien 389
	color: black;
390
	padding: 2px;
391
	border-bottom: none;
392
}
393
 
394
#lien_plein_ecran img {
395
	height: 20px;
396
}
397
 
1447 aurelien 398
#lien-voir-cc {
1442 aurelien 399
    bottom: 3px;
400
    right: 5px;
1445 aurelien 401
    bottom: 20px;
402
    height: 20px;
1442 aurelien 403
}
404
 
1447 aurelien 405
#origine-donnees {
406
	-moz-user-select: none;
407
    background: -moz-linear-gradient(center , rgba(255, 255, 255, 0) 0pt, rgba(255, 255, 255, 0.5) 50px) repeat scroll 0 0 transparent;
408
    color: #444444;
409
    direction: ltr;
410
    font-family: Arial,sans-serif;
411
    font-size: 10px;
412
    font-weight: bold;
413
    height: 19px;
414
    line-height: 19px;
415
    padding-left: 50px;
416
    padding-right: 2px;
417
    bottom: 0px;
418
    position: absolute;
419
    text-align: right;
420
    white-space: nowrap;
421
    z-index: 3001;
422
}
423
 
424
#origine-donnees a {
425
    color: #444444;
426
    cursor: pointer;
427
    text-decoration: underline;
428
    border-bottom: none;
429
}
430
#origine-donnees a:active, #origine-donnees a:visited {
431
    border-bottom: 1px dotted #666666;
432
  	color: #CCCCCC;
433
    text-decoration: none;
434
}
435
 
436
#origine-donnees a:visited {
437
	border-bottom: 1px dotted #666666;
438
  	color: #444444;
439
    text-decoration: none;
440
}
1438 aurelien 441
/*+-----------------------------------------------------------------------------------------------------------------+*/
479 jpm 442
/* Pop-up observations */
953 jpm 443
#info-bulle{
444
	min-height:500px;
445
	width:500px;
446
}
479 jpm 447
#observations {
448
	overflow:none;
915 jpm 449
	margin:-1px 0 0 0;
450
	border: 1px solid #AAA;
451
	border-radius:0 0 4px 4px;
479 jpm 452
}
915 jpm 453
#obs-pieds-page {
492 jpm 454
	font-size:10px;
455
	color:#CCC;
915 jpm 456
	clear:both;
492 jpm 457
}
915 jpm 458
.ui-tabs {
459
	padding:0;
460
}
461
.ui-widget-content {
462
	border:0;
463
}
464
.ui-widget-header {
465
	background:none;
466
	border:0;
467
	border-bottom:1px solid #AAA;
468
	border-radius:0;
469
}
470
.ui-tabs-selected a {
471
	border-bottom:1px solid white;
472
}
473
.ui-tabs-selected a:focus {
474
	outline:0;
475
}
476
.ui-tabs .ui-tabs-panel {
477
	padding:0.2em;
478
}
953 jpm 479
.ui-tabs .ui-tabs-nav li a {
480
	padding: 0.5em 0.6em;
481
}
915 jpm 482
#obs h2 {
483
	margin:0;
484
	text-align:center;
485
}
501 jpm 486
#observations a {
487
	color:#333;
521 jpm 488
	border-bottom:1px dotted gainsboro;
494 delphine 489
}
490
#observations a:hover {
491
	color:#56B80E;
501 jpm 492
	border-bottom:1px dotted #56B80E;
494 delphine 493
}
953 jpm 494
.nom-sci{
495
	color:#454341;
496
	font-weight:bold;
497
}
479 jpm 498
/*+-----------------------------------------------------------------------------------------------------------------+*/
915 jpm 499
/* Pop-up observations : liste */
953 jpm 500
.cel-img-principale {
501
	height:0;/*Pour IE*/
479 jpm 502
}
915 jpm 503
.cel-img-principale img{
504
	float:right;
505
	height:75px;
953 jpm 506
	width:75px;
915 jpm 507
	padding:1px;
508
	border:1px solid white;
479 jpm 509
}
915 jpm 510
#observations .cel-img:hover img{
511
	border: 1px dotted #56B80E;
479 jpm 512
}
915 jpm 513
.cel-img-secondaire, .cel-infos{
514
	display: none;
515
}
516
ol#obs-liste-lignes {
517
	padding:5px;
479 jpm 518
	margin:0;
519
}
953 jpm 520
.champ-nom-sci {
521
	display:none;
522
}
523
#obs-liste-lignes li dl {/*Pour IE*/
524
	width:350px;
525
}
915 jpm 526
.obs-conteneur{
527
	counter-reset: item;
479 jpm 528
}
915 jpm 529
.obs-conteneur .nom-sci:before {
530
	content: counter(item) ". ";
531
	counter-increment: item;
532
	display:block;
533
	float:left;
479 jpm 534
}
915 jpm 535
.obs-conteneur li {
536
	display: block;
953 jpm 537
	margin-bottom:1em;
479 jpm 538
}
953 jpm 539
 
479 jpm 540
/*+-----------------------------------------------------------------------------------------------------------------+*/
915 jpm 541
/* Diaporama */
542
.cel-legende{
543
	text-align:left;
544
}
545
.cel-legende-vei{
572 jpm 546
	float:right;
479 jpm 547
}
915 jpm 548
.cel-legende p{
939 jpm 549
	color: black;
550
	font-size: 12px;
551
	line-height: 18px;
552
	margin: 0;
629 jpm 553
}
915 jpm 554
.cel-legende a, .cel-legende a:active, .cel-legende a:visited {
555
	border-bottom:1px dotted gainsboro;
556
	color:#333;
557
	text-decoration:none;
558
	background-image:none;
841 jpm 559
}
915 jpm 560
.cel-legende a:hover {
561
	color:#56B80E;
562
	border-bottom:1px dotted #56B80E;
563
}
841 jpm 564
/*+-----------------------------------------------------------------------------------------------------------------+*/
565
/* Plugin Jquery Pagination */
915 jpm 566
.navigation {
567
	padding:5px;
568
	float:right;
569
}
841 jpm 570
.pagination {
571
	font-size: 80%;
572
}
573
.pagination a {
574
	text-decoration: none;
915 jpm 575
	border: solid 1px #666;
576
	color: #666;
577
	background:gainsboro;
841 jpm 578
}
915 jpm 579
.pagination a:hover {
580
	color: white;
581
	background: #56B80E;
582
}
841 jpm 583
.pagination a, .pagination span {
584
	display: block;
585
	float: left;
586
	padding: 0.3em 0.5em;
587
	margin-right: 5px;
588
	margin-bottom: 5px;
589
	min-width:1em;
590
	text-align:center;
591
}
592
.pagination .current {
915 jpm 593
	background: #4A4B4C;
594
	color: white;
595
	border: solid 1px gainsboro;
841 jpm 596
}
597
.pagination .current.prev, .pagination .current.next{
915 jpm 598
	color: #999;
599
	border-color: #999;
600
	background: gainsboro;
841 jpm 601
}
941 jpm 602
/*+-----------------------------------------------------------------------------------------------------------------+*/
603
/* Formulaire de contact */
604
#form-contact input{
605
	width:300px;
606
}
607
#form-contact textarea{
608
	width:300px;
609
	height:200px;
610
}
611
#form-contact #fc_envoyer{
612
	width:50px;
613
	float:right;
614
}
615
#form-contact #fc_annuler{
616
	width:50px;
617
	float:left;
618
}
619
#form-contact label.error {
620
	color:red;
621
	font-weight:bold;
622
}
623
#form-contact .info {
624
	padding:5px;
625
	background-color: #4A4B4C;
626
	border: solid 1px #666;
627
	color: white;
628
	white-space: pre-wrap;
629
	width: 300px;
630
}