Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
404 gduche 1
/* La ligne suivante ne sert qu'à régler le bug d'affichage des listes déroulantes */
2
select {
572 gduche 3
	background: #FFF;
404 gduche 4
}
1 aurelien 5
/** Add css rules here for your application. */
572 gduche 6
body,html {
1078 gduche 7
	height: 100%;
572 gduche 8
}
1 aurelien 9
 
1078 gduche 10
body div {
11
	font-family:arial;
12
}
13
 
1 aurelien 14
/** Example rules used by the template application (remove for your app) */
15
h1 {
572 gduche 16
	font-size: 2em;
17
	font-weight: bold;
18
	color: #777777;
19
	margin: 40px 0px 0px;
20
	text-align: center;
1 aurelien 21
}
22
 
118 gduche 23
/*#titre {background:url(/img/logo.png) no-repeat; height:100px; border:solid 1px red; width:250px; text-align:left; padding-top:50px}*/
1 aurelien 24
.sendButton {
572 gduche 25
	display: block;
26
	font-size: 16pt;
1 aurelien 27
}
28
 
29
/** Most GWT widgets already have a style name defined */
30
.gwt-DialogBox {
572 gduche 31
	width: 400px;
1 aurelien 32
}
33
 
34
.dialogVPanel {
572 gduche 35
	margin: 5px;
1 aurelien 36
}
37
 
38
.serverResponseLabelError {
572 gduche 39
	color: red;
1 aurelien 40
}
41
 
119 aurelien 42
/** Erreur dans un formulaire de type texte **/
43
.erreurFormTexte {
572 gduche 44
	background-color: red;
119 aurelien 45
}
46
 
1 aurelien 47
/** Set ids using widget.getElement().setId("idOfElement") */
48
#closeButton {
572 gduche 49
	margin: 15px 6px 6px;
1 aurelien 50
}
53 gduche 51
 
572 gduche 52
#titre {
53
	text-align: center;
54
	background: #B0CB70;
55
	opacity: 0.9;
56
	position: fixed;
57
	width: 100%
58
}
118 gduche 59
 
572 gduche 60
#titre h1 {
61
	width: 200px;
62
	background: url(./img/identiplante_mini.png) no-repeat 240px 0px;
63
	margin: 0 auto;
64
	padding: 10px 50px 10px 50px
65
}
118 gduche 66
 
1026 gduche 67
 
68
.titre2 {
69
	color: #FD8C13;
70
	font-size: 13px;
71
	margin: 20px 0 10px;
72
	padding: 0 0 0 25px;
73
	text-transform: none;
74
	font-weight: bold;
75
	background: url(./img/troisCarre.png) no-repeat 0 8px;
76
}
77
 
572 gduche 78
.boutonPlus {
79
	border: none;
80
	color: rgba(0, 0, 0, 0);
81
	background: url("./img/zoom_in.png");
82
	width: 16px;
83
	height: 16px;
84
	cursor: pointer;
85
}
244 gduche 86
 
572 gduche 87
.boutonMoins {
88
	border: none;
89
	color: rgba(0, 0, 0, 0);
90
	background: url("./img/zoom_out.png");
91
	width: 16px;
92
	height: 16px;
93
	cursor: pointer;
94
}
95
 
96
#navigation {
97
	position: fixed;
98
	width: 100%;
99
	top: 0;
100
	z-index: 3000
101
}
102
 
103
#navigation>div>div {
104
	float: left;
105
	padding: 10px;
106
	background: #7DA422;
107
	margin-right: 3px;
108
}
109
 
110
#navigation>div>div:hover {
111
	background: #9Fc644
112
}
113
 
114
#navigation a {
115
	text-decoration: none;
116
	color: #222;
117
	font-weight: bold
118
}
119
 
120
#contenu {
1096 gduche 121
	padding: 56px 0 0 5%;
572 gduche 122
}
123
 
657 gduche 124
#contenu a {
125
	border-bottom: 1px dotted #95AE5D;
126
	color: #598000;
127
}
128
 
129
#contenu a:hover {
130
	border-bottom: 1px dotted #95AE5D;
131
	color: #FD8C13;
132
}
133
 
1078 gduche 134
.labelLien {
135
	border-bottom: 1px dotted #95AE5D;
136
    color: #598000;
137
    cursor:pointer;
138
}
139
.labelLien:hover {
140
	border-bottom: 1px dotted #95AE5D;
141
	color: #FD8C13;
142
}
143
 
336 gduche 144
.lien {
572 gduche 145
	color: blue;
146
	text-decoration: underline;
147
	cursor: pointer
336 gduche 148
}
149
 
572 gduche 150
.titre {
151
	color: #FD8C13;
152
	font-size: 15px;
153
	margin: 20px 0 10px;
154
	padding: 0 0 0 25px;
155
	text-transform: uppercase;
156
	font-weight: bold;
157
	background: url(./img/troisCarre.png) no-repeat 0 8px;
246 gduche 158
}
143 gduche 159
 
1106 gduche 160
.titre3 {
161
	color: #FD8C13;
162
	font-size: 15px;
163
	margin: 20px 0 10px;
164
	font-weight: bold;
165
}
166
 
167
.titre-minuscule {
168
	color: #FD8C13;
169
	font-size: 15px;
170
	margin: 20px 0 10px;
171
	padding: 0 0 0 25px;
172
	font-weight: bold;
173
	background: url(./img/troisCarre.png) no-repeat 0 8px;
174
}
175
 
572 gduche 176
.sousTitre {
177
	font-size: 15px;
178
	font-weight: bold
179
}
143 gduche 180
 
572 gduche 181
.petit {
182
	font-size: 11px;
183
	color: #888
184
}
201 gduche 185
 
572 gduche 186
.gris {
187
	color: #888
188
}
434 aurelien 189
 
572 gduche 190
.gras {
191
	font-weight: bold
192
}
434 aurelien 193
 
572 gduche 194
.plein {
195
	width: 100%;
196
}
197
 
198
.tiers {
199
	width: 30%
200
}
201
 
657 gduche 202
.quart {
203
	width: 25%;
204
}
205
 
572 gduche 206
.actif {
207
	background: #8EB533
208
}
209
 
210
.inactif {
211
	background: white
212
}
213
 
214
.gauche {
215
	float: left
216
}
217
 
218
.droite {
219
	float: right
220
}
221
 
222
.nettoyage {
223
	clear: both
224
}
225
 
226
hr {
227
	border: none;
228
	border-bottom: solid 1px #DDD;
229
	border-top: solid 1px #AAA
230
}
231
 
232
.gwt-SuggestBoxPopup {
233
	z-index: 10000
234
}
235
 
236
.fenetreDefilante {
237
	position: fixed;
238
	margin: auto
239
}
240
 
241
.overlay {
242
	background-color: #777;
243
	cursor: pointer;
244
	display: block;
245
	opacity: 0.7;
246
	left: 0;
247
	top: 0;
248
	position: fixed;
249
	width: 100%;
250
	z-index: 1100;
251
	height: 100%
252
}
253
 
254
.overlayContenu {
255
	cursor: pointer;
256
	display: block;
257
	opacity: 1;
258
	left: 0;
259
	top: 0;
260
	position: fixed;
261
	width: 100%;
262
	z-index: 1200;
263
	height: 100%
264
}
265
 
266
.fermerOverlay {
267
	z-index: 1210;
268
	position: fixed;
269
	width: 30px;
270
	height: 30px;
271
	background: url(./img/close.png) no-repeat 5px 0;
272
	border: none;
273
	color: white;
274
	font-weight: bold;
275
	cursor: pointer;
657 gduche 276
	border: 1px dotted #95AE5D;
277
	border-width: 0 0 1px 0;
278
	padding-right: 30px
572 gduche 279
}
280
 
281
.precedentOverlay:hover {
657 gduche 282
	opacity: 1;
572 gduche 283
}
657 gduche 284
 
572 gduche 285
.precedentOverlay {
286
	display: block;
287
	z-index: 1210;
288
	position: fixed;
289
	width: 30px;
290
	height: 40px;
291
	background: url(./img/precedent_overlay.png) no-repeat 50px 170px;
292
	border: none;
293
	color: white;
294
	font-weight: bold;
295
	cursor: pointer;
296
	margin-top: -170px;
297
	padding-bottom: 200px;
298
	padding-left: 200px;
299
	padding-top: 200px;
657 gduche 300
	opacity: 0;
572 gduche 301
}
302
 
303
.suivantOverlay:hover {
657 gduche 304
	opacity: 1;
572 gduche 305
}
657 gduche 306
 
572 gduche 307
.suivantOverlay {
308
	display: block;
309
	z-index: 1210;
310
	position: fixed;
311
	width: 30px;
312
	height: 40px;
313
	background: url(./img/suivant_overlay.png) no-repeat 90px 170px;
314
	border: none;
315
	color: white;
316
	font-weight: bold;
317
	cursor: pointer;
318
	margin-top: -170px;
319
	padding-bottom: 200px;
320
	padding-right: 200px;
321
	padding-top: 200px;
657 gduche 322
	opacity: 0;
323
	margin-left: -150px;
617 aurelien 324
}
325
 
326
.acceder-outil {
657 gduche 327
	background: url("./img/telaBlancJaune.png") no-repeat scroll 0 0 #ECCB12;
1010 aurelien 328
	text-decoration: none;
657 gduche 329
	border: medium none;
330
	border-radius: 10px 10px 10px 10px;
331
	color: #6C6865;
332
	font-size: 14px;
1010 aurelien 333
    padding: 4px 10px 4px 30px;
657 gduche 334
	cursor: pointer;
335
	display: inline-block;
336
}
337
 
1010 aurelien 338
.acceder-outil:hover {
339
    border-bottom: 1px dotted #95AE5D;
340
    color: #FD8C13;
341
}
342
 
657 gduche 343
.colonne {
344
	float: left;
345
}
346
 
347
.ligne {
348
	clear: left;
349
}
350
 
351
.ombre-forte {
352
	box-shadow: 2px 2px 2px #666;
353
	-moz-box-shadow: 2px 2px 2px #666;
354
	-webkit-box-shadow: 2px 2px 2px #666;
355
}
356
 
357
.ombre-faible {
358
	box-shadow: 2px 2px 2px #DDD;
359
	-moz-box-shadow: 2px 2px 2px #DDD;
360
	-webkit-box-shadow: 2px 2px 2px #DDD;
361
}
362
 
363
.limiteMin {
664 gduche 364
	min-width:870px;
657 gduche 365
}
366
 
367
.limiteMax {
664 gduche 368
	max-width:870px;
657 gduche 369
}
370
 
371
.arrondi {
372
	border-radius:10px;
373
	-moz-border-radius:10px;
374
	-webkit-border-radius:10px;
375
}
376
 
377
.arrondi-faible {
378
	border-radius:3px;
379
	-moz-border-radius:3px;
380
	-webkit-border-radius:3px;
381
}
382
 
662 gduche 383
.bouton {
1044 gduche 384
    background: none repeat scroll 0 0 white;
664 gduche 385
    border: 1px solid #99C242;
386
    border-radius: 10px 10px 10px 10px;
387
    box-shadow: 1px 2px 2px #AAAAAA;
388
    color: #598000;
389
    cursor: pointer;
390
    font-size: 0.9em;
391
    font-weight: bold;
392
    padding: 5px;
662 gduche 393
}
394
 
395
.bouton:hover {
396
	background:#8EB533;
397
	color:#FFF;
680 gduche 398
}
399
 
1076 gduche 400
.bouton-petit {
401
	background: none repeat scroll 0 0 white;
402
    border: 1px solid #99C242;
403
    box-shadow: 1px 2px 2px #AAAAAA;
404
    color: #598000;
405
    cursor: pointer;
406
    font-size: 11px;
407
    font-weight: bold;
408
    padding: 1px;
409
    width:100px;
410
    margin:0 5px;
411
}
412
 
413
.bouton-petit:hover {
414
	background:#8EB533;
415
	color:#FFF;
416
}
417
 
680 gduche 418
.votePrisEnCompteOui {
419
	background:#8EB533;
420
	position:absolute;
421
	font-size:11px;
422
	padding:5px;
423
	margin-top:-30px;
424
	border-radius:10px;
425
}
426
 
427
.votePrisEnCompteNon {
1106 gduche 428
	background:#f06a6a;
680 gduche 429
	position:absolute;
430
	font-size:11px;
431
	padding:5px;
432
	margin-top:-30px;
433
	border-radius:10px;
682 gduche 434
}
435
 
1076 gduche 436
boutonVoteOuiDesactive {
1070 aurelien 437
	background-image: url("img/pouce_haut_desactive.png") !important;
1005 aurelien 438
	color:#999999;
1070 aurelien 439
	cursor: default !important;
1005 aurelien 440
}
441
 
1070 aurelien 442
.boutonVoteNonDesactive {
443
	background-image: url("img/pouce_bas_desactive.png") !important;
444
	color:#999999;
445
	cursor: default !important;
1005 aurelien 446
}
447
 
682 gduche 448
.chapeau {
449
	color: #6C6865;
450
    font-family: arial;
451
    font-size: 13px;
452
    font-weight: bold;
453
    letter-spacing: 0;
454
    line-height: 18px;
455
    text-transform: none;
456
    font-style:italic;
914 gduche 457
}
458
 
459
.enfant {
1110 gduche 460
	background:#EEE;
461
	margin-left:20px;
462
	clear:both;
463
	border-left:solid 1px;
464
	padding-left:5px;
465
	border-color:#DDD
1018 aurelien 466
}
467
 
468
.image_determinee {
1088 gduche 469
	/*background: #333;*/
1018 aurelien 470
}
471
 
472
.image_non_determinee {
473
	background: #CF1313;
1026 gduche 474
}
1044 gduche 475
.suiteImages {
476
	background:url(./img/suiteImages.png) 3px 0 no-repeat;
477
	cursor:pointer;
478
	color:rgba(0, 0, 0, 0)
479
 
1052 gduche 480
}
481
 
482
.propositionInitiale {
483
	color:#8EB533;
484
	font-weight:bold;
1070 aurelien 485
}
486
 
487
.etoiles {
488
    height: 26px;
489
    margin-left: 38px;
490
    margin-top: -2px;
491
    width: 26px;
492
}
493
 
494
.etoiles_0 {
495
	background:url("./img/0_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px,
496
}
497
.etoiles_1 {
498
	background:url("./img/1_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px,
499
}
500
.etoiles_2 {
501
	background:url("./img/2_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px,
502
}
503
.etoiles_3 {
504
	background:url("./img/3_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px;
505
}
506
.etoiles_4 {
507
	background:url("./img/4_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px;
508
}
509
.etoiles_5 {
510
	background:url("./img/5_etoiles.png") no-repeat; border:none; padding-left:16px; padding-top:16px; margin-left:5px;
1078 gduche 511
}
512
 
1081 gduche 513
.boutonOK {
514
	background:url("./img/tick.png") no-repeat;
515
	width:15px;
516
	height:15px;
517
	display:block;
518
	margin-top:2px;
519
	border:none;
520
	cursor:pointer;
1088 gduche 521
}
522
 
523
.enligne {
524
	display:inline;
1096 gduche 525
}
526
 
1106 gduche 527
.aide {
528
	background:url(./img/information.png) no-repeat;
529
	padding-left:20px;
530
}
531
 
532
.lienListe {
533
	background:url('./img/traitTela.jpg') no-repeat 0 0px;
534
	cursor:pointer;
535
	padding-left:31px;
536
	padding-bottom:5px;
537
	padding-top:2px;
538
	border:none;
539
}