Subversion Repositories Sites.obs-saisons.fr

Rev

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

Rev Author Line No. Line
31 aurelien 1
/* =========================== Balises ============================
2
 
76 aurelien 3
 
4
 
31 aurelien 5
/* =========================== Style général ============================ */
6
 
39 aurelien 7
#wrapper #container {
60 aurelien 8
	max-width:1650px;
39 aurelien 9
}
10
 
31 aurelien 11
.gauche {
12
	float:left;
13
}
14
 
15
.droite {
16
	float:right;
17
}
18
 
76 aurelien 19
.information {
20
 
101 aurelien 21
	padding-left:40px;
76 aurelien 22
	border:1px solid #FF420F;
23
	max-width:600px;
24
	height: 50px;
25
	text-align: center;
26
	font-size: 1.3em;
27
	color: #000000;
28
	background: url("../images/attention.png") no-repeat scroll 1em 0.5em transparent;
29
	background-color:#EF9C86;
30
}
31 aurelien 31
 
76 aurelien 32
.information div {
33
	margin-top: 15px
34
}
35
 
116 aurelien 36
span.erreur {
37
	color: red;
38
}
76 aurelien 39
 
116 aurelien 40
input.erreur {
41
	border: 1px solid red;
42
}
43
 
44
#center {
45
	width: 720px;
46
}
47
 
48
 
31 aurelien 49
/* =========================== Titres ============================ */
50
 
51
.titre_saisie {
52
	padding-bottom: 10px;
53
}
54
 
55
.etape {
56
	color: #9AC343;
57
	padding-bottom:20px;
58
}
59
 
60
 
53 aurelien 61
/* =========================== Menu et navigation ============================ */
62
 
63
#saisie_menu ul li {
64
	background: none;
65
	padding-top: 5px;
66
}
67
 
68
#saisie_menu ul li.item_menu_station {
69
	background: url("../images/station.png") no-repeat scroll 0px 0.5em transparent;
70
}
71
 
72
.item_menu_station > a {
73
	padding: 5px;
74
}
75
 
76
#saisie_menu ul li.item_menu_espece {
77
	background: url("../images/espece.png") no-repeat scroll 0px 0.5em transparent;
78
}
79
 
80
.item_menu_espece > a {
81
	padding: 5px
82
}
83
 
84
#saisie_menu ul li.station_ajout {
85
	background: url("../images/ajout.png") no-repeat scroll -9px transparent;
86
}
87
 
88
li.station_en_cours {
89
	padding-top: 10px;
90
}
91
 
92
li.station_en_cours > a {
93
	color: #FFFFFF;
94
	font-weight: bold;
95
	border: solid 1px #FFFFFF;
162 vio 96
	background-color: #BF3600;
53 aurelien 97
	-moz-border-radius: 0.9em;
110 aurelien 98
	-webkit-border-radius: 0.9em;
99
	border-radius: 0.9em;
53 aurelien 100
}
101
 
110 aurelien 102
#retour_au_site {
103
	padding-top: 30px;
104
}
105
 
53 aurelien 106
#saisie_menu ul li.espece_ajout {
107
	background: url("../images/ajout.png") no-repeat scroll -9px transparent;
108
}
109
 
110
li.espece_en_cours > a {
111
	color: #FFFFFF;
112
	font-weight: bold;
113
	border: solid 1px #FFFFFF;
114
	background-color: #9AC343;
110 aurelien 115
	-moz-border-radius: 0.9em;
116
	-webkit-border-radius: 0.9em;
117
	border-radius: 0.9em;
53 aurelien 118
}
119
 
60 aurelien 120
ul.liste_annees_observations {
121
	list-style-type: none;
122
}
123
 
124
.liste_annees_observations li {
125
	display: inline;
126
	list-style: none;
127
	background: none;
128
}
129
 
130
#annee_en_cours {
131
	font-size: 1.6em;
132
	color: #9AC343;
133
}
134
 
116 aurelien 135
#retour_au_site ul li {
136
	background: url("../images/retour.png") no-repeat scroll 0 30% transparent
137
}
31 aurelien 138
 
76 aurelien 139
 
140
/* =========================== Formulaires d'inscription et d'identification ============================ */
141
 
142
#conteneur_formulaire_identification, #conteneur_formulaire_inscription {
143
 
144
	width:650px;
145
	border: 1px solid grey;
146
	margin-top: 10px;
147
	padding: 10px;
148
	text-align: left !important;
110 aurelien 149
	-moz-border-radius: 0.9em;
150
	-webkit-border-radius: 0.9em;
151
	border-radius: 0.9em;
76 aurelien 152
}
153
 
154
#conteneur_formulaire_identification form {
155
	text-align: left !important;
156
}
157
 
158
#conteneur_formulaire_identification input {
159
	text-align: left !important;
160
	width: 300px;
161
}
162
 
163
#conteneur_formulaire_inscription input {
164
	text-align: left !important;
165
	width: 300px;
166
}
167
 
168
.message_identification {
169
	font-weight: bold;
170
	padding-top: 5px;
171
	color: #435F06;
172
	font-size: 1.5em;
173
}
174
 
175
 
176
/* =========================== Formulaires de l'application ============================ */
177
 
101 aurelien 178
#saisie_station {
179
	width: 700px;
180
}
181
 
182
.element_formulaire label {
166 aurelien 183
	font-weight: bold;
161 vio 184
	width:150px;
101 aurelien 185
}
186
 
31 aurelien 187
.element_formulaire_en_ligne {
188
	padding-right: 10px;
189
}
190
 
60 aurelien 191
.element_formulaire, #conteneur_liens_lat_lon, #conteneur_form_liens_lat_lon {
101 aurelien 192
	padding-bottom : 15px;
31 aurelien 193
}
194
 
195
.conteneur_carte {
89 aurelien 196
	height: 400px;
197
	width: 725px;
31 aurelien 198
}
199
 
200
.gros_bouton_validation {
201
	height: 50px;
202
	width: 200px;
203
	font-size: 20px;
204
	margin-top: 10x;
89 aurelien 205
	margin-right:10px;
31 aurelien 206
}
207
 
101 aurelien 208
#localiser_lat_lon {
209
	background: url("../images/localiser.png") no-repeat scroll 2px transparent;
210
}
211
 
31 aurelien 212
#saisie_liste_evenements {
213
	text-align: center;
89 aurelien 214
	width:715px;
31 aurelien 215
}
216
 
39 aurelien 217
#saisie_modif_evenements tr, #saisie_liste_evenements tr {
31 aurelien 218
	height: 40px;
219
}
220
 
39 aurelien 221
.icone_s {
222
	height: 30px;
223
	width: 30px;
224
}
31 aurelien 225
 
53 aurelien 226
.valider_formulaire {
227
	cursor: pointer;
228
	background-color: transparent;
229
	background-image: url("../images/valider_s.png");
230
	border: none;
231
	color: rgba(0,0,0,0);
232
	background-position: center;
233
	background-repeat: no-repeat;
60 aurelien 234
	padding-top: 2px;
235
	padding-bottom: 3px;
53 aurelien 236
}
39 aurelien 237
 
53 aurelien 238
.valider_formulaire:hover, .lien_modifier:hover {
239
	background-color: #CFCFCF;
240
}
241
 
89 aurelien 242
#form_saisie_espece {
243
	margin-right: auto;
244
	margin-left: auto;
245
}
246
 
53 aurelien 247
.formulaire_informations_espece_mini {
60 aurelien 248
	text-align: center;
166 aurelien 249
	height:50px;
53 aurelien 250
	width: 500px;
251
	border: solid 1px #999999;
252
	background-color: #CFCFCF;
253
	padding: 10px;
254
	margin-bottom: 10px;
110 aurelien 255
	-moz-border-radius: 0.9em;
256
	-webkit-border-radius: 0.9em;
257
	border-radius: 0.9em;
53 aurelien 258
}
259
 
260
.formulaire_informations_espece_mini:hover {
261
	background-color: #C0DF7D;
262
}
263
 
264
.formulaire_informations_espece_mini img {
265
	margin-top:-5px;
266
}
267
 
268
 
31 aurelien 269
/* =========================== Fiches ============================== */
270
 
271
.element_fiche {
272
	padding-bottom : 5px;
273
}
274
 
275
.intitule_fiche {
276
 
277
}
278
 
279
.valeur_fiche {
280
	font-weight: bold;
281
}
282
 
283
.titre_section_fiche {
284
	padding-bottom : 10px;
285
	padding-top : 10px;
286
}
287
 
288
.titre_fiche {
289
 
290
}
291
 
292
hr.separation_section {
293
	margin-top: 25px;
294
}
295
 
53 aurelien 296
.informations_espece img {
161 vio 297
	margin-top:-35px;
166 aurelien 298
	padding: 15px;
53 aurelien 299
}
31 aurelien 300
 
53 aurelien 301
.annee_observation {
302
	padding-left: 10px;
303
}
304
 
305
.observations_individu {
116 aurelien 306
    display: table-cell;
307
    height: 400px;
308
    width: 250px;
53 aurelien 309
}
310
 
311
.observations_individu {
312
	color: #000000;
313
}
314
 
166 aurelien 315
#fiche_individu .observations_individu li {
53 aurelien 316
	background: none;
317
	padding-left: 1px;
166 aurelien 318
	list-style-type: none;
319
	margin-left: 0px;
320
	padding-left: 0px;
53 aurelien 321
}
322
 
323
.observations_individu li div {
324
	-moz-border-radius: 0.9em;
110 aurelien 325
	-webkit-border-radius: 0.9em;
326
	border-radius: 0.9em;
53 aurelien 327
}
328
 
166 aurelien 329
#center .observations_individu h4 {
53 aurelien 330
	padding: 5px;
166 aurelien 331
	color: black;
53 aurelien 332
}
333
 
60 aurelien 334
.date_observation_individu {
89 aurelien 335
 
336
}
337
 
338
.calendrier {
82 aurelien 339
 
60 aurelien 340
}
341
 
116 aurelien 342
#fiche_individu {
343
	background-color: #F4F2EB;
344
	padding : 10px;
345
	margin-top: 31px;
346
}
76 aurelien 347
 
116 aurelien 348
 
31 aurelien 349
/* =========================== Tableaux d'évenements ============================ */
350
 
39 aurelien 351
#saisie_liste_evenements, #saisie_modif_evenements {
352
	text-align: center;
353
}
354
 
197 aurelien 355
#saisie_liste_evenements .information_individu, #saisie_modif_evenements.information_individu {
356
	text-align: left;
357
}
358
 
31 aurelien 359
tr:nth-child(odd) {
360
  background-color: #CFCFCF ;
361
}
362
 
363
tr:nth-child(1) {
364
	color: #FFFFFF;
365
}
366
 
367
tr:nth-child(1), tr:nth-child(2) {
368
	background-color: #FFFFFF ;
369
}
370
 
371
div.evenement {
372
	text-align: center;
373
}
374
 
375
.stade_evenement {
376
	text-align: center;
377
}
378
 
76 aurelien 379
 
31 aurelien 380
/* =========================== Styles des différents stades ============================ */
381
 
53 aurelien 382
.stade_feuillaison {
161 vio 383
	background-color: #ACC700;
31 aurelien 384
}
385
 
53 aurelien 386
.stade_floraison {
161 vio 387
	background-color: #B549B9;
31 aurelien 388
}
389
 
53 aurelien 390
.stade_fructification {
161 vio 391
	background-color: #FF7F00;
31 aurelien 392
}
393
 
53 aurelien 394
.stade_senescence {
161 vio 395
	background-color: #BF3600;
31 aurelien 396
}
397
 
53 aurelien 398
.stade_1ere_apparition {
161 vio 399
	background-color: #B549B9;
31 aurelien 400
}
401
 
76 aurelien 402
 
53 aurelien 403
/* ============ Styles crées par des effets javascripts automatiques ===== */
60 aurelien 404
 
101 aurelien 405
.chargement {
406
	background: url("../images/chargement.gif") no-repeat center center #DCDCDC;
407
}
408
 
89 aurelien 409
.erreur_valeur {
410
	background-color: red;
411
}
412
 
53 aurelien 413
.conteneur_type {
414
	float: right;
415
	align: center;
116 aurelien 416
	width: 230px;
53 aurelien 417
}
31 aurelien 418
 
419
h4.lien_pliage {
420
	text-decoration: underline;
116 aurelien 421
	display: inline;
31 aurelien 422
}
423
 
166 aurelien 424
.pliage {
425
	padding: 5px;
426
}
427
 
31 aurelien 428
h4.lien_pliage:hover {
429
	cursor: pointer;
53 aurelien 430
}
431
 
432
.element_cliquable {
433
	cursor: pointer;
434
}
435
 
60 aurelien 436
.element_cliquable:hover {
437
	background : #9AC343;
438
 }
439
 
53 aurelien 440
.element_clique {
441
	background: #9AC343;
442
}
443
 
166 aurelien 444
#saisie_espece ul.liste_onglets {
53 aurelien 445
	margin: 0;
446
	padding: 0;
447
	float: left;
448
	list-style: none;
449
	height: 32px; /*--Set height of tabs--*/
450
	border-bottom: 1px solid #999;
161 vio 451
	border-left: 1px solid #999;
53 aurelien 452
}
60 aurelien 453
 
166 aurelien 454
#saisie_espece ul.liste_onglets li {
455
	-moz-border-radius-topleft: 0px;
456
    -moz-border-radius-topright: 0px;
53 aurelien 457
	float: left;
458
	margin: 0;
459
	padding: 0;
460
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
461
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
462
	border: 1px solid #999;
463
	border-left: none;
464
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
465
	overflow: hidden;
466
	position: relative;
467
	background: #e0e0e0;
468
}
60 aurelien 469
 
166 aurelien 470
#saisie_espece ul.liste_onglets li a {
53 aurelien 471
	text-decoration: none;
472
	color: #000;
473
	display: block;
474
	font-size: 1.2em;
475
	padding: 0 20px;
161 vio 476
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
53 aurelien 477
	outline: none;
478
}
60 aurelien 479
 
166 aurelien 480
#saisie_espece ul.liste_onglets li a:hover {
161 vio 481
	background: #ccc;
482
}
483
 
53 aurelien 484
html ul.liste_onglets li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
485
	background: #fff;
161 vio 486
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
53 aurelien 487
}
488
 
166 aurelien 489
#saisie_espece #onglets  {
89 aurelien 490
	margin-left: 85px;
491
	margin-right: auto;
492
	position: relative;
493
	bottom: -1px;
494
	z-index: 1;
495
	clear:left;
496
}
497
 
166 aurelien 498
#saisie_espece .conteneur_onglets {
53 aurelien 499
	border: 1px solid #999;
500
	overflow: hidden;
89 aurelien 501
	float: left;
53 aurelien 502
	background: #fff;
89 aurelien 503
	position: relative;
504
	width:565px;
53 aurelien 505
}
506
 
166 aurelien 507
#saisie_espece .contenu_onglet {
53 aurelien 508
	padding: 20px;
509
	font-size: 1.2em;
89 aurelien 510
}
511
 
101 aurelien 512
 
513
.autocompletion {
514
	position:relative;
515
}
516
 
517
.conteneur_suggestions {
518
    position: absolute;
519
    left: 107px;
520
    width: 180px;
521
    background-color: #212427;
522
    border: 2px solid #000;
523
    color: #fff;
524
    z-index: 300;
110 aurelien 525
    -moz-border-radius: 7px;
526
	-webkit-border-radius: 7px;
527
	border-radius: 7px;
101 aurelien 528
}
529
 
530
.liste_suggestions {
531
    margin: 0px;
532
    padding: 0px;
533
}
534
 
535
.liste_suggestions li {
536
    margin: 0px 0px 3px 0px;
537
    padding: 3px;
538
    cursor: pointer;
539
}
197 aurelien 540
 
541
#form_saisie_station .liste_suggestions li {
542
	list-style-type: none;
543
	margin-left: 5px;
544
	margin-right: 5px;
545
}
546
 
101 aurelien 547
 
548
.liste_suggestions .element_selectionne {
549
    background-color: #659CD8;
550
}
551
 
89 aurelien 552
/* ============ Styles crées spécifiquement pour compenser les faiblesses de certains navigateurs ===== */
553
 
554
.clearer {
555
	clear:both;
31 aurelien 556
}