Subversion Repositories Sites.obs-saisons.fr

Rev

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

Rev Author Line No. Line
93 aurelien 1
/* $Id: style.css,v 1.38.2.4 2009/09/14 13:10:47 goba Exp $ */
2
 
3
/**
4
 * ODS, for Drupal 6.x
5
 *
6
 * If you use a customized color scheme, you must regenerate it after
7
 * modifying this file.
8
 */
9
 
10
/**
11
 * Generic elements
12
 */
13
body {
14
  margin: 0;
94 aurelien 15
  margin-top: 0px;
93 aurelien 16
  padding: 0;
17
  background: transparent;
120 aurelien 18
  font: 11px/170% Verdana, sans-serif;
93 aurelien 19
  color: #494949;
94 aurelien 20
  background-color: #C6B895;
93 aurelien 21
}
22
 
23
input {
24
  font: 12px/100% Verdana, sans-serif;
25
  color: #494949;
26
}
27
 
28
textarea, select {
29
  font: 12px/160% Verdana, sans-serif;
30
  color: #494949;
31
}
32
 
33
h1, h2, h3, h4, h5, h6 {
34
  margin: 0;
35
  padding: 0;
36
  font-weight: normal;
37
  font-family: Helvetica, Arial, sans-serif;
38
}
39
 
40
h1 {
41
  font-size: 170%;
42
}
43
 
44
h2 {
45
  font-size: 160%;
46
  line-height: 130%;
47
}
48
 
49
h3 {
50
  font-size: 140%;
51
}
52
 
53
h4 {
54
  font-size: 130%;
55
}
56
 
57
h5 {
58
  font-size: 120%;
59
}
60
 
61
h6 {
62
  font-size: 110%;
63
}
64
 
65
ul, quote, code, fieldset {
66
  margin: .5em 0;
67
}
68
 
69
p {
70
  margin: 0.6em 0 1.2em;
71
  padding: 0;
72
}
73
 
74
a:link, a:visited {
75
  color: #027AC6;
76
  text-decoration: none;
77
}
78
 
79
a:hover {
80
  color: #0062A0;
81
  text-decoration: underline;
82
}
83
 
84
a:active, a.active {
85
  color: #5895be;
86
}
87
 
88
hr {
89
  margin: 0;
90
  padding: 0;
91
  border: none;
92
  height: 1px;
93
  background: #5294c1;
94
}
95
 
96
ul {
97
  margin: 0.5em 0 1em;
98
  padding: 0;
99
}
100
 
101
ol {
102
  margin: 0.75em 0 1.25em;
103
  padding: 0;
104
}
105
 
106
ol li, ul li {
107
  margin: 0.4em 0 0.4em .5em; /* LTR */
108
}
109
 
110
ul.menu, .item-list ul {
111
  margin: 0.35em 0 0 -0.5em; /* LTR */
112
  padding: 0;
113
}
114
 
115
ul.menu ul, .item-list ul ul {
116
  margin-left: 0em; /* LTR */
117
}
118
 
119
ol li, ul li, ul.menu li, .item-list ul li, li.leaf {
120
  margin: 0.15em 0 0.15em .5em; /* LTR */
121
}
122
 
123
ul li, ul.menu li, .item-list ul li, li.leaf {
124
  padding: 0 0 .2em 1.5em;
125
  list-style-type: none;
126
  list-style-image: none;
127
  /**background: transparent url(images/menu-leaf.gif) no-repeat 1px .35em; /* LTR */
128
}
129
 
130
ol li {
131
  padding: 0 0 .3em;
132
  margin-left: 2em; /* LTR */
133
}
134
 
135
ul li.expanded {
136
  /**background: transparent url(images/menu-expanded.gif) no-repeat 1px .35em; /* LTR */
137
}
138
 
139
ul li.collapsed {
140
  /**background: transparent url(images/menu-collapsed.gif) no-repeat 0px .35em; /* LTR */
141
}
142
 
143
ul li.leaf a, ul li.expanded a, ul li.collapsed a {
144
  display: block;
145
}
146
 
147
ul.inline li {
148
  background: none;
149
  margin: 0;
150
  padding: 0 1em 0 0; /* LTR */
151
}
152
 
153
ol.task-list {
154
  margin-left: 0; /* LTR */
155
  list-style-type: none;
156
  list-style-image: none;
157
}
158
ol.task-list li {
159
  padding: 0.5em 1em 0.5em 2em; /* LTR */
160
}
161
ol.task-list li.active {
162
  /**background: transparent url(images/task-list.png) no-repeat 3px 50%; /* LTR */
163
}
164
ol.task-list li.done {
165
  color: #393;
166
  /**background: transparent url(../../misc/watchdog-ok.png) no-repeat 0px 50%; /* LTR */
167
}
168
ol.task-list li.active {
169
  margin-right: 1em; /* LTR */
170
}
171
 
172
fieldset ul.clear-block li {
173
  margin: 0;
174
  padding: 0;
175
  background-image: none;
176
}
177
 
178
dl {
179
  margin: 0.5em 0 1em 1.5em; /* LTR */
180
}
181
 
182
dl dt {
183
}
184
 
185
dl dd {
186
  margin: 0 0 .5em 1.5em; /* LTR */
187
}
188
 
189
img, a img {
190
  border: none;
191
}
192
 
193
table {
194
  margin: 1em 0;
195
  width: 500px;
196
}
197
 
198
thead th {
199
  border-bottom: 2px solid #d3e7f4;
200
  color: #494949;
201
  font-weight: bold;
202
}
203
 
204
th a:link, th a:visited {
205
  color: #6f9dbd;
206
}
207
 
208
td, th {
209
  padding: .3em .5em;
210
}
211
 
212
tr.even, tr.odd, tbody th {
213
  border: solid #d3e7f4;
214
  border-width: 1px 0;
215
}
216
 
217
tr.odd, tr.info {
218
  background-color: #edf5fa;
219
}
220
 
221
tr.even {
222
  background-color: #fff;
223
}
224
 
225
tr.drag {
226
  background-color: #fffff0;
227
}
228
 
229
tr.drag-previous {
230
  background-color: #ffd;
231
}
232
 
233
tr.odd td.active {
234
  background-color: #ddecf5;
235
}
236
 
237
tr.even td.active {
238
  background-color: #e6f1f7;
239
}
240
 
241
td.region, td.module, td.container, td.category {
242
  border-top: 1.5em solid #fff;
243
  border-bottom: 1px solid #b4d7f0;
244
  background-color: #d4e7f3;
245
  color: #455067;
246
  font-weight: bold;
247
}
248
 
249
tr:first-child td.region, tr:first-child td.module, tr:first-child td.container, tr:first-child td.category {
250
  border-top-width: 0;
251
}
252
 
253
span.form-required {
254
  color: #ffae00;
255
}
256
 
257
span.submitted, .description {
258
  font-size: 0.92em;
259
  color: #898989;
260
}
261
 
262
.description {
263
  line-height: 150%;
264
  margin-bottom: 0.75em;
265
  color: #898989;
266
}
267
 
268
.messages, .preview {
269
  margin: .75em 0 .75em;
270
  padding: .5em 1em;
271
}
272
 
273
.messages ul {
274
  margin: 0;
275
}
276
 
277
.form-checkboxes, .form-radios, .form-checkboxes .form-item, .form-radios .form-item {
278
  margin: 0.25em 0;
279
}
280
 
281
#center form {
282
  margin-bottom: 2em;
283
}
284
 
285
.form-button, .form-submit {
286
  margin: 2em 0.5em 1em 0; /* LTR */
287
}
288
 
109 aurelien 289
.form-submit#edit-submit {
290
	margin-bottom: -7px;
291
}
292
 
93 aurelien 293
#dblog-form-overview .form-submit,
294
.confirmation .form-submit,
295
.search-form .form-submit,
296
.poll .form-submit,
297
fieldset .form-button, fieldset .form-submit,
298
.sidebar .form-button, .sidebar .form-submit,
299
table .form-button, table .form-submit {
300
  margin: 0;
301
}
302
 
303
.box {
304
  margin-bottom: 2.5em;
305
}
306
 
307
/**
308
 * Layout
309
 */
310
#header-region {
311
  min-height: 1em;
312
  /**background: #d2e6f3 url(images/bg-navigation.png) repeat-x 50% 100%; **/
313
}
314
 
94 aurelien 315
@font-face {
109 aurelien 316
	/* Fonte pour le titre en haut à gauche */
94 aurelien 317
	font-family: "BorisBlackBloxx";
318
	src: url("font/BorisBlackBloxx.ttf") format("truetype");
319
}
320
 
321
.titre_site {
322
	font-family: BorisBlackBloxx, Cursive;
323
	font-size: 14px;
109 aurelien 324
	margin-left: auto;
325
    margin-right: auto;
120 aurelien 326
    padding-left: 0px;
109 aurelien 327
    padding-top: 5px;
328
    padding-bottom: 10px;
329
    width: 955px;
94 aurelien 330
}
331
 
332
.titre_site #observatoire {
333
	color: #0396A6;
334
	font-size: 30px;
335
}
336
 
337
.titre_site #des {
338
	color: #0396A6;
339
	font-size: 20px
340
}
341
 
342
.titre_site #saisons {
343
	color: #FF7F00;
344
	text-transform: uppercase;
345
	font-size: 40px
346
}
347
 
93 aurelien 348
#header-region .block {
349
  display: block;
350
  margin: 0 1em;
351
}
352
 
353
#header-region .block-region {
354
  display: block;
355
  margin: 0 0.5em 1em;
356
  padding: 0.5em;
357
  position: relative;
358
  top: 0.5em;
359
}
360
 
361
#header-region * {
362
  display: inline;
363
  line-height: 1.5em;
364
  margin-top: 0;
365
  margin-bottom: 0;
366
}
367
 
368
/* Prevent the previous directive from showing the content of script elements in Mozilla browsers. */
369
#header-region script {
370
  display: none;
371
}
372
 
373
#header-region p, #header-region img {
374
  margin-top: 0.5em;
375
}
376
 
377
#header-region h2 {
378
  margin: 0 1em 0 0; /* LTR */
379
}
380
 
381
#header-region h3, #header-region label, #header-region li {
382
  margin: 0 1em;
383
  padding: 0;
384
  background: none;
385
}
386
 
387
#wrapper {
388
 /** background: #edf5fa url(images/body.png) repeat-x 50% 0; **/
389
}
390
 
391
#wrapper {
392
	width: 955px;
393
	margin-left:auto;
394
	margin-right:auto;
395
	background-color: #FFFFFF;
109 aurelien 396
	-moz-box-shadow: 3px 0px 0 #aaa;
397
	-webkit-box-shadow: 3px 0px 0 #aaa;
398
	box-shadow: 3px 0px 0 #aaa;
93 aurelien 399
}
400
 
401
#wrapper #container {
402
  margin: 0 auto;
403
  padding: 0 20px;
404
}
405
 
406
#wrapper #container {
407
  height: 80px;
408
}
409
 
410
#wrapper #container #header #logo-floater {
411
  position: absolute;
412
}
413
 
414
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
415
  line-height: 120px;
416
  position: relative;
417
  z-index: 2;
418
  white-space: nowrap;
419
}
420
 
421
#wrapper #container #header h1 span {
422
  font-weight: bold;
423
}
424
 
425
#wrapper #container #header h1 img {
426
  padding-top: 14px;
427
  padding-right: 20px; /* LTR */
428
  float: left; /* LTR */
429
}
430
 
431
#logo-floater {
432
	padding-left: 20px;
433
	padding-top: 10px;
434
}
435
 
436
/* We must define 100% width to avoid the body being too narrow for near-empty pages */
437
#wrapper #container {
438
  float: left;
439
  width: 100%;
440
  background-color: #FFFFFF;
441
}
442
 
443
#center {
122 aurelien 444
	width: 555px;
93 aurelien 445
	min-height: 650px;
446
	background-color: #FFFFFF;
447
	height: auto;
448
	float: left;
449
}
450
 
122 aurelien 451
#center h2 {
452
    background: url("images/puce_titre_2.png") no-repeat scroll 13px 0 transparent;
453
    color: #4F3F1B;
454
    font-weight: bold;
124 aurelien 455
    padding: 0 0 10px 42px;
122 aurelien 456
    width: 100%;
457
}
458
 
459
#center h3 {
124 aurelien 460
	color: #9AC343;
122 aurelien 461
	font-weight: bold;
124 aurelien 462
	padding: 10px 0 0 0;
122 aurelien 463
}
464
 
465
#center h4 {
466
	color: #ACC700;
467
	font-weight: bold;
468
}
469
 
470
#center li {
471
	 margin-left: 20px;
472
	 padding: 0 0 0 0;
473
	 list-style-type: disc;
474
}
475
 
476
#center li.num {
477
	 list-style-type: decimal;
124 aurelien 478
	 margin-left: 20px;
122 aurelien 479
}
480
 
481
.placement_image {
482
	display: inline;
483
    float: left;
484
}
485
 
93 aurelien 486
#left {
120 aurelien 487
	width: 190px;
93 aurelien 488
	padding:5px;
109 aurelien 489
	padding-left: 0px;
93 aurelien 490
	float: left;
123 aurelien 491
	min-height: 650px;
93 aurelien 492
	background-color: #FFFFFF;
493
}
494
 
109 aurelien 495
#sidebar-left > div > div > div > ul.menu > li {
496
	padding-left:20px;
497
}
498
 
119 aurelien 499
#sidebar-left > div > div > div > ul.menu > li > a.active-trail {
500
    color: #FFFFFF;
501
    font-weight: bold;
502
    padding-left: 5px;
503
    -moz-border-radius: 0.9em 0.9em 0.9em 0.9em;
504
}
505
 
506
#sidebar-left a.active-trail {
507
	color: #800000;
508
	text-decoration: underline;
509
}
510
 
93 aurelien 511
#sidebar-left {
109 aurelien 512
	-webkit-border-radius-topright: 20px 20px;
513
	-webkit-border-radius-bottomright: 20px 20px;
514
	-moz-border-radius-topright: 20px 20px;
120 aurelien 515
	-moz-border-radius-bottomright: 0px 0px;
109 aurelien 516
	border-top-right-radius: 20px 20px;
517
	border-bottom-right-radius: 20px 20px;
120 aurelien 518
	background-color: #0396A6;
109 aurelien 519
	position:absolute;
520
	width: inherit;
93 aurelien 521
}
522
 
523
#sidebar-left > div > h2 {
524
	display: none;
525
}
526
 
527
#sidebar-left a {
528
	color: #FFFFFF;
529
	font-weight: bold;
109 aurelien 530
	padding-left: 5px;
93 aurelien 531
}
532
 
533
.content > div > ul > li {
534
	background: transparent url(images/puce_menu_niveau_1_triangle.png) no-repeat 3px 0.55em;
535
}
536
 
537
ul.menu > li {
538
	padding-top:5px;
109 aurelien 539
	padding-left:5px;
93 aurelien 540
}
541
 
109 aurelien 542
.menu_recourbe {
543
 
544
	-moz-border-radius-bottomleft: 901px 158px;
545
	-moz-border-radius-bottomright: 300px 24px;
546
    border-bottom-left-radius: 901px 158px;
547
    border-bottom-right-radius: 300px 24px;
548
 
549
	background-color: #FFFFFF;
550
	width:inherit;
551
	height: 30px;
552
	position: absolute;
553
	z-index: 50;
554
}
555
 
93 aurelien 556
#right {
120 aurelien 557
	width: 200px;
93 aurelien 558
	float: right;
559
	background-color: #FFFFFF;
560
}
561
 
109 aurelien 562
#right h2 {
563
	display: none;
564
}
565
 
566
.titre_bloc {
567
	color: #FFFFFF;
568
	font-weight: bold;
569
	background-color: #5F8DBF;
570
	-webkit-border-radius-topleft: 20px 20px;
571
	-moz-border-radius-topleft: 20px 20px;
572
	border-top-left-radius: 20px 20px;
573
}
574
 
575
.info_utilisateur, .formulaire_identification_ods {
576
 
577
	-webkit-border-radius-topleft: 20px 20px;
578
	-webkit-border-radius-bottomleft: 20px 20px;
579
	-moz-border-radius-topleft: 20px 20px;
580
	-moz-border-radius-bottomleft: 20px 20px;
581
	border-top-left-radius: 20px 20px;
582
	border-bottom-left-radius: 20px 20px;
583
	border: solid 1px;
584
	background-color: #F4F2EB;
585
    text-align: center;
120 aurelien 586
    border-color: #D1C6A8;
109 aurelien 587
}
588
 
589
.info_utilisateur a {
119 aurelien 590
	padding: 10px 10px 10px 25px;
109 aurelien 591
}
592
 
119 aurelien 593
#lien_mes_obs {
594
	background: url("images/mes_obs.png") no-repeat scroll 5px 0.75em transparent;
595
}
596
 
597
#lien_admin {
598
	background: transparent url(images/admin.png) no-repeat 1px 0.7em;
599
}
600
 
601
#lien_mon_profil {
602
	background: transparent url(images/mon_profil.png) no-repeat 1px 0.7em;
603
}
604
 
605
#lien_deconnexion {
606
	background: transparent url(images/deconnexion.png) no-repeat 1px 0.7em;
607
}
608
 
109 aurelien 609
.nb_inscrits {
610
	background: transparent url(images/puce-inscrits.png) no-repeat;
611
	padding: 5px;
612
	padding-left: 30px;
613
	text-align: right;
614
	font-size: 1.2em;
615
}
616
 
124 aurelien 617
 
618
/** Bloc de description en haut de la page d'accueil **/
135 aurelien 619
#node-2 {
620
	visibility: hidden;
621
	height: 0px;
622
}
623
 
124 aurelien 624
#block-block-6 {
125 aurelien 625
	border: 2px dashed #D2C7AA;
124 aurelien 626
	text-align: center;
627
	margin-left: 0.6em;
628
}
629
 
630
#block-block-6 h2 {
631
	padding: 0 0 0 0;
632
	background: none;
633
	font-weight: bold;
634
}
635
 
636
#block-block-6 p {
637
	color : #9AC343;
142 vio 638
	font-weight: normal;
124 aurelien 639
	margin: 0;
640
}
641
 
642
/** Bloc des dernières new ods en page d'accueil **/
643
 
644
.views-row {
645
    clear: both;
646
    padding-top: 20px;
647
}
648
 
649
.views-row .views-field-field-image-fid {
650
	display: inline;
651
	float: left;
125 aurelien 652
	padding-top: 8px;
124 aurelien 653
}
654
 
125 aurelien 655
.views-row .views-field-title {
124 aurelien 656
	display: inline;
657
	float: left;
658
	padding-left: 10px;
659
	padding-right: 10px;
125 aurelien 660
	font-size: 1.2em;
124 aurelien 661
}
662
 
125 aurelien 663
.views-row .views-field-title a {
664
	color: #51401D;
665
}
666
 
124 aurelien 667
.views-row .views-field-teaser {
668
	display: inline;
669
	float: right;
670
	width: 420px;
671
}
672
 
673
.derniers_articles .views-row .views-field-teaser {
674
	width: 445px;
675
}
676
 
141 aurelien 677
#dernieres_obs li a {
678
	color: #7D9F31;
679
}
680
 
124 aurelien 681
.lire_toutes_actus {
682
	text-align: right;
683
	float: right;
684
}
685
 
686
.separation_invisible {
687
	visibility: hidden;
688
	clear: both;
689
}
690
 
125 aurelien 691
/** Styles des onglets des dernières actualités **/
692
#onglets  {
693
	margin-right: auto;
694
	position: relative;
695
	bottom: -2px;
696
	z-index: 1;
697
	clear:left;
698
}
699
 
700
.conteneur_onglets {
701
	overflow: hidden;
702
	float: left;
703
	background: #D1C6AB;
704
	position: relative;
705
	width:565px;
706
}
707
 
708
.contenu_onglet {
709
	padding: 20px;
142 vio 710
	font-size: 1.1em;
125 aurelien 711
}
712
 
713
ul.liste_onglets {
714
	margin: 0;
715
	padding: 0;
716
	float: left;
717
	list-style: none;
718
	height: 32px; /*--Set height of tabs--*/
719
}
720
 
721
#onglets ul.liste_onglets li {
722
	float: left;
723
	margin: 0;
724
	padding: 0;
725
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
726
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
727
	border-left: none;
728
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
729
	margin-right: 3px;
730
	overflow: hidden;
731
	position: relative;
732
	background: #DFDBD1;
733
	list-style-type: none;
734
	-webkit-border-radius-topleft: 10px 10px;
735
	-webkit-border-radius-topright: 10px 10px;
736
	-moz-border-radius-topleft: 10px 10px;
737
	-moz-border-radius-topright: 10px 10px;
738
	border-top-left-radius: 10px 10px;
739
	border-top-right-radius: 10px 10px;
740
}
741
 
742
#onglets ul.liste_onglets li.active {
743
	background: #D1C6AB;
744
}
745
 
746
#onglets ul.liste_onglets li a {
747
	text-decoration: none;
748
	color: #000;
749
	display: block;
750
	font-size: 1.2em;
751
	padding-left: 5px;
752
	padding-right: 5px;
753
	outline: none;
754
}
755
 
756
 
93 aurelien 757
/* We ensure the sidebars are still clickable using z-index */
758
#wrapper #container .sidebar {
759
  margin: 60px 0 5em;
760
  width: 210px;
761
  float: left;
762
  z-index: 2;
763
  position: relative;
764
  background-color: #FFFFFF;
765
}
766
 
767
#wrapper #container .sidebar .block {
768
  margin: 0 0 1.5em 0;
769
}
770
 
771
#sidebar-left .block {
109 aurelien 772
  padding: 25px 15px 0 0px;
93 aurelien 773
}
774
 
775
#sidebar-right .block {
776
  padding: 0 0px 0 15px;
777
}
778
 
779
.block .content {
780
  margin: 0.5em 0;
781
}
782
 
783
#sidebar-left .block-region {
784
  margin: 0 15px 0 0px; /* LTR */
785
}
786
 
787
#sidebar-right .block-region {
788
  margin: 0 0px 0 15px; /* LTR */
789
}
790
 
791
.block-region {
792
  padding: 1em;
793
  background: transparent;
794
  border: 2px dashed #b4d7f0;
795
  text-align: center;
796
  font-size: 1.3em;
797
}
798
 
135 aurelien 799
/** Style général applicable à toute les pages **/
800
.cadre_information {
801
	border: solid 1px #DFDBD1;
802
	background-color: #DFDBD1;
136 vio 803
	padding : 10px
135 aurelien 804
}
805
 
93 aurelien 806
/* Now we add the backgrounds for the main content shading */
807
#wrapper #container #center #squeeze {
808
 /** background: #fff url(images/bg-content.png) repeat-x 50% 0;**/
809
  position: relative;
810
}
811
 
812
#wrapper #container #center .right-corner {
813
 /**  background: transparent url(images/bg-content-right.png) no-repeat 100% 0; **/
814
  position: relative;
815
  left: 10px;
816
}
817
 
818
#wrapper #container #center .right-corner .left-corner {
819
  padding: 60px 25px 5em 35px;
820
 /**  background: transparent url(images/bg-content-left.png) no-repeat 0 0; **/
821
  margin-left: -10px;
822
  position: relative;
823
  left: -10px;
824
  min-height: 400px;
825
}
826
 
827
#wrapper #container #footer {
828
  float: none;
829
  clear: both;
830
  text-align: center;
831
  margin: 4em 0 -3em;
832
  color: #898989;
833
}
834
 
835
#wrapper #container .breadcrumb {
836
  position: absolute;
837
  top: 15px;
838
  left: 35px; /* LTR */
839
  z-index: 3;
840
}
841
 
842
/**
843
 * Header
844
 */
845
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
846
  color: #fff;
847
  font-weight: normal;
848
  text-shadow: #1659ac 0px 1px 3px;
849
  font-size: 1.5em;
850
}
851
 
852
#header {
853
	height: 180px;
854
	background-color: #FFFFFF;
855
	width: 955px;
856
}
857
 
858
.printemps {
859
	background: transparent url(images/bandeaux/bandeau-printemps.png) no-repeat 50% 0;
860
}
861
 
862
.ete {
863
	background: transparent url(images/bandeaux/bandeau-ete.png) no-repeat 50% 0;
864
}
865
 
866
.automne {
867
	background: transparent url(images/bandeaux/bandeau-automne.png) no-repeat 50% 0;
868
}
869
 
870
.hiver {
871
	background: transparent url(images/bandeaux/bandeau-hiver.png) no-repeat 50% 0;
872
}
873
 
874
#wrapper #container #header h1 a:hover {
875
  text-decoration: none;
876
}
877
 
878
#wrapper #container .breadcrumb {
879
  font-size: 0.92em;
880
}
881
 
882
#wrapper #container .breadcrumb, #wrapper #container .breadcrumb a {
883
  color: #529ad6;
884
}
885
 
886
#mission {
887
  padding: 1em;
888
  background-color: #fff;
889
  border: 1px solid #e0e5fb;
890
  margin-bottom: 2em;
891
}
892
 
893
#footer {
894
	height: 120px;
895
	background: transparent url(images/bandeaux/bandeau-bas.png) no-repeat 50% 0;
896
	clear:both;
897
	width:955px;
898
	margin-left:auto;
899
	margin-right: auto;
900
	background-color: #FFFFFF;
109 aurelien 901
	text-align: center;
902
	vertical-align: bottom;
93 aurelien 903
}
904
 
109 aurelien 905
.liens_bas_page {
906
	padding-top: 85px;
907
	color: #FF7F00;
908
	font-weight: bold;
909
}
910
 
911
.liens_bas_page a {
912
	color: #FF7F00;
913
	margin-left: 4px;
914
	margin-right: 4px;
915
	font-size: 1.1em;
916
}
917
 
93 aurelien 918
/**
919
 * Primary navigation
920
 */
921
ul.primary-links {
922
  margin: 0;
94 aurelien 923
  margin: -25px 0 0;
93 aurelien 924
  padding: 0;
925
  float: right; /* LTR */
926
  position: relative;
927
  z-index: 4;
109 aurelien 928
  height: 25px;
93 aurelien 929
}
930
 
109 aurelien 931
ul.primary-links li {
93 aurelien 932
  padding: 0;
94 aurelien 933
  height: 25px;
109 aurelien 934
  margin-left: 2px;
93 aurelien 935
  float: left; /* LTR */
936
  background-image: none;
937
  -moz-border-radius-topright: 1em;
938
  -moz-border-radius-topleft: 1em;
109 aurelien 939
  border-top-right-radius: 1em;
940
  border-top-left-radius: 1em;
93 aurelien 941
}
942
 
109 aurelien 943
ul.primary-links li.lien_primaire {
944
	margin-left: 3px;
945
	margin-top: 0px;
946
	margin-bottom: 0px;
947
	margin-right: 0px;
948
	-moz-box-shadow: 3px 0px 0 #aaa;
949
	-webkit-box-shadow: 3px 0px 0 #aaa;
950
	box-shadow: 3px 0px 0 #aaa;
951
}
952
 
953
 
954
li#lien_primaire_1 {
94 aurelien 955
	width: 20px;
93 aurelien 956
	background-color : #6C9ED8;
957
}
958
 
109 aurelien 959
li#lien_primaire_1 a img {
94 aurelien 960
	padding-top: 2px;
961
}
962
 
109 aurelien 963
li#lien_primaire_2 {
120 aurelien 964
	background-color : #BF3600;
93 aurelien 965
}
966
 
109 aurelien 967
li#lien_primaire_3 {
93 aurelien 968
	background-color : #9AC343;
969
}
970
 
109 aurelien 971
li#lien_primaire_4 {
93 aurelien 972
	background-color : #EF7B1D;
973
}
974
 
975
ul.primary-links li a, ul.primary-links li a:link, ul.primary-links li a:visited {
976
  display: block;
977
  margin: 0 1em;
978
  font-weight: bold;
979
  color: #FFFFFF;
94 aurelien 980
  padding-top: 2px;
93 aurelien 981
}
982
 
983
ul.primary-links li a:hover, ul.primary-links li a.active {
984
  color: #fff;
985
}
986
 
987
ul.primary-links li.active-trail {
94 aurelien 988
	height:35px;
109 aurelien 989
	margin-top:-10px;
93 aurelien 990
}
991
 
992
ul.primary-links li.active-trail a {
993
	padding-top: 5px;
994
}
995
 
996
/**
997
 * Secondary navigation
998
 */
999
ul.secondary-links {
1000
  margin: 0;
1001
  padding: 18px 0 0;
1002
  float: right; /* LTR */
1003
  clear: right; /* LTR */
1004
  position: relative;
1005
  z-index: 4;
1006
}
1007
 
1008
ul.secondary-links li {
1009
  margin: 0;
1010
  padding: 0;
1011
  float: left; /* LTR */
1012
  background-image: none;
1013
}
1014
 
1015
ul.secondary-links li a, ul.secondary-links li a:link, ul.secondary-links li a:visited {
1016
  display: block;
1017
  margin: 0 1em;
1018
  padding: .75em 0 0;
1019
  color: #cde3f1;
1020
  background: transparent;
1021
}
1022
 
1023
ul.secondary-links li a:hover, ul.secondary-links li a.active {
1024
  color: #cde3f1;
1025
  background: transparent;
1026
}
1027
 
1028
/**
1029
 * Local tasks
1030
 */
1031
ul.primary, ul.primary li, ul.secondary, ul.secondary li {
1032
  border: 0;
1033
  background: none;
1034
  margin: 0;
1035
  padding: 0;
1036
}
1037
 
1038
#tabs-wrapper {
1039
  margin: 0 -26px 1em;
1040
  padding: 0 26px;
1041
  border-bottom: 1px solid #e9eff3;
1042
  position: relative;
1043
}
1044
ul.primary {
1045
  padding: 0.5em 0 10px;
1046
  float: left; /* LTR */
1047
}
1048
ul.secondary {
1049
  clear: both;
1050
  text-align: left; /* LTR */
1051
  border-bottom: 1px solid #e9eff3;
1052
  margin: -0.2em -26px 1em;
1053
  padding: 0 26px 0.6em;
1054
}
1055
h2.with-tabs {
1056
  float: left; /* LTR */
1057
  margin: 0 2em 0 0; /* LTR */
1058
  padding: 0;
1059
}
1060
 
1061
ul.primary li a, ul.primary li.active a, ul.primary li a:hover, ul.primary li a:visited,
1062
ul.secondary li a, ul.secondary li.active a, ul.secondary li a:hover, ul.secondary li a:visited {
1063
  border: 0;
1064
  background: transparent;
1065
  padding: 4px 1em;
1066
  margin: 0 0 0 1px; /* LTR */
1067
  height: auto;
1068
  text-decoration: none;
1069
  position: relative;
1070
  top: -1px;
1071
  display: inline-block;
1072
}
1073
ul.primary li.active a, ul.primary li.active a:link, ul.primary li.active a:visited, ul.primary li a:hover,
1074
ul.secondary li.active a, ul.secondary li.active a:link, ul.secondary li.active a:visited, ul.secondary li a:hover {
1075
  background: url(images/bg-tab.png) repeat-x 0 50%;
1076
  color: #fff;
1077
}
1078
ul.primary li.active a,
1079
ul.secondary li.active a {
1080
  font-weight: bold;
1081
}
1082
 
1083
/**
1084
 * Nodes & comments
1085
 */
1086
.node {
1087
  border-bottom: 1px solid #e9eff3;
1088
  margin: 0 0px 1.5em;
120 aurelien 1089
  padding: 1.5em 13px;
93 aurelien 1090
}
1091
 
1092
ul.links li, ul.inline li {
1093
  margin-left: 0;
1094
  margin-right: 0;
1095
  padding-left: 0; /* LTR */
1096
  padding-right: 1em; /* LTR */
1097
  background-image: none;
1098
}
1099
 
1100
.node .links, .comment .links {
1101
  text-align: left; /* LTR */
1102
}
1103
 
1104
.node .links ul.links li, .comment .links ul.links li {}
1105
.terms ul.links li {
1106
  margin-left: 0;
1107
  margin-right: 0;
1108
  padding-right: 0;
1109
  padding-left: 1em;
1110
}
1111
 
1112
.picture, .comment .submitted {
1113
  float: right; /* LTR */
1114
  clear: right; /* LTR */
1115
  padding-left: 1em; /* LTR */
1116
}
1117
 
1118
.new {
1119
  color: #ffae00;
1120
  font-size: 0.92em;
1121
  font-weight: bold;
1122
  float: right; /* LTR */
1123
}
1124
 
1125
.terms {
1126
  float: right; /* LTR */
1127
}
1128
 
1129
.preview .node, .preview .comment, .sticky {
1130
  margin: 0;
1131
  padding: 0.5em 0;
1132
  border: 0;
1133
  background: 0;
1134
}
1135
 
1136
.sticky {
1137
  padding: 1em;
1138
  background-color: #fff;
1139
  border: 1px solid #e0e5fb;
1140
  margin-bottom: 2em;
1141
}
1142
 
1143
#comments {
1144
  position: relative;
1145
  top: -1px;
1146
  border-bottom: 1px solid #e9eff3;
1147
  margin: -1.5em -25px 0;
1148
  padding: 0 25px;
1149
}
1150
 
1151
#comments h2.comments {
1152
  margin: 0 -25px;
1153
  padding: .5em 25px;
1154
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1155
}
1156
 
1157
.comment {
1158
  margin: 0 -25px;
1159
  padding: 1.5em 25px 1.5em;
1160
  border-top: 1px solid #e9eff3;
1161
}
1162
 
1163
.indented {
1164
  margin-left: 25px; /* LTR */
1165
}
1166
 
1167
.comment h3 a.active {
1168
  color: #494949;
1169
}
1170
 
1171
.node .content, .comment .content {
1172
  margin: 0.6em 0;
1173
}
1174
 
1175
/**
1176
 * Aggregator.module
1177
 */
1178
#aggregator {
1179
  margin-top: 1em;
1180
}
1181
#aggregator .feed-item-title {
1182
  font-size: 160%;
1183
  line-height: 130%;
1184
}
1185
#aggregator .feed-item {
1186
  border-bottom: 1px solid #e9eff3;
1187
  margin: -1.5em -31px 1.75em;
1188
  padding: 1.5em 31px;
1189
}
1190
#aggregator .feed-item-categories {
1191
  font-size: 0.92em;
1192
}
1193
#aggregator .feed-item-meta {
1194
  font-size: 0.92em;
1195
  color: #898989;
1196
}
1197
 
1198
/**
1199
 * Color.module
1200
 */
1201
#palette .form-item {
1202
  border: 1px solid #fff;
1203
}
1204
#palette .item-selected {
1205
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1206
  border: 1px solid #d9eaf5;
1207
}
1208
 
1209
/**
1210
 * Menu.module
1211
 */
1212
tr.menu-disabled {
1213
  opacity: 0.5;
1214
}
1215
tr.odd td.menu-disabled {
1216
  background-color: #edf5fa;
1217
}
1218
tr.even td.menu-disabled {
1219
  background-color: #fff;
1220
}
1221
 
1222
/**
1223
 * Poll.module
1224
 */
1225
.poll .bar {
1226
  background: #fff url(images/bg-bar-white.png) repeat-x 0 0;
1227
  border: solid #f0f0f0;
1228
  border-width: 0 1px 1px;
1229
}
1230
 
1231
.poll .bar .foreground {
1232
  background: #71a7cc url(images/bg-bar.png) repeat-x 0 100%;
1233
}
1234
 
1235
.poll .percent {
1236
  font-size: .9em;
1237
}
1238
 
1239
/**
1240
 * Autocomplete.
1241
 */
1242
#autocomplete li {
1243
  cursor: default;
1244
  padding: 2px;
1245
  margin: 0;
1246
}
1247
 
1248
/**
1249
 * Collapsible fieldsets
1250
 */
1251
fieldset {
1252
  margin: 1em 0;
1253
  padding: 1em;
1254
  border: 1px solid #d9eaf5;
1255
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1256
}
1257
 
1258
/* Targets IE 7. Fixes background image in field sets. */
1259
*:first-child+html fieldset {
1260
  padding: 0 1em 1em;
1261
  background-position: 0 .75em;
1262
  background-color: transparent;
1263
}
1264
 
1265
*:first-child+html fieldset > .description, *:first-child+html fieldset .fieldset-wrapper .description {
1266
  padding-top: 1em;
1267
}
1268
 
1269
fieldset legend {
1270
  /* Fix disappearing legend in FFox */
1271
  display: block;
1272
}
1273
 
1274
*:first-child+html fieldset legend, *:first-child+html fieldset.collapsed legend {
1275
  display: inline;
1276
}
1277
 
1278
html.js fieldset.collapsed {
1279
  background: transparent;
1280
  padding-top: 0;
1281
  padding-bottom: .6em;
1282
}
1283
 
1284
html.js fieldset.collapsible legend a {
1285
  padding-left: 2em; /* LTR */
1286
  background: url(images/menu-expanded.gif) no-repeat 0% 50%; /* LTR */
1287
}
1288
 
1289
html.js fieldset.collapsed legend a {
1290
  background: url(images/menu-collapsed.gif) no-repeat 0% 50%; /* LTR */
1291
}
1292
 
1293
/**
1294
 * Syndication icons and block
1295
 */
1296
#block-node-0 h2 {
1297
  float: left; /* LTR */
1298
  padding-right: 20px; /* LTR */
1299
}
1300
 
1301
#block-node-0 img, .feed-icon {
1302
  float: right; /* LTR */
1303
  padding-top: 4px;
1304
}
1305
 
1306
#block-node-0 .content {
1307
  clear: right; /* LTR */
1308
}
1309
 
1310
/**
1311
 * Login Block
1312
 */
1313
#user-login-form {
1314
  text-align: center;
1315
}
1316
#user-login-form ul {
1317
  text-align: left; /* LTR */
1318
}
1319
 
1320
/**
1321
 * User profiles.
1322
 */
1323
.profile {
1324
  margin-top: 1.5em;
1325
}
1326
.profile h3 {
1327
  border-bottom: 0;
1328
  margin-bottom: 1em;
1329
}
1330
.profile dl {
1331
  margin: 0;
1332
}
1333
.profile dt {
1334
  font-weight: normal;
1335
  color: #898989;
1336
  font-size: 0.92em;
1337
  line-height: 1.3em;
1338
  margin-top: 1.4em;
1339
  margin-bottom: 0.45em;
1340
}
1341
.profile dd {
1342
  margin-bottom: 1.6em;
1343
}
1344
 
1345
/**
1346
 * Admin Styles
1347
 */
1348
div.admin-panel,
1349
div.admin-panel .description,
1350
div.admin-panel .body,
1351
div.admin,
1352
div.admin .left,
1353
div.admin .right,
1354
div.admin .expert-link,
1355
div.item-list,
1356
.menu {
1357
  margin: 0;
1358
  padding: 0;
1359
}
1360
 
1361
div.admin .left {
1362
  float: left; /* LTR */
1363
  width: 48%;
1364
}
1365
div.admin .right {
1366
  float: right; /* LTR */
1367
  width: 48%;
1368
}
1369
 
1370
div.admin-panel {
1371
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1372
  padding: 1em 1em 1.5em;
1373
}
1374
div.admin-panel .description {
1375
  margin-bottom: 1.5em;
1376
}
1377
div.admin-panel dl {
1378
  margin: 0;
1379
}
1380
div.admin-panel dd {
1381
  color: #898989;
1382
  font-size: 0.92em;
1383
  line-height: 1.3em;
1384
  margin-top: -.2em;
1385
  margin-bottom: .65em;
1386
}
1387
 
1388
table.system-status-report th {
1389
  border-color: #d3e7f4;
1390
}
1391
 
1392
#autocomplete li.selected, tr.selected td, tr.selected td.active {
1393
  background: #027ac6;
1394
  color: #fff;
1395
}
1396
 
1397
tr.selected td a:link, tr.selected td a:visited, tr.selected td a:active {
1398
  color: #d3e7f4;
1399
}
1400
 
1401
tr.taxonomy-term-preview {
1402
  opacity: 0.5;
1403
}
1404
 
1405
tr.taxonomy-term-divider-top {
1406
  border-bottom: none;
1407
}
1408
 
1409
tr.taxonomy-term-divider-bottom {
1410
  border-top: 1px dotted #CCC;
1411
}
1412
 
1413
/**
1414
 * CSS support
1415
 */
1416
 
1417
/*******************************************************************
1418
 * Color Module: Don't touch                                       *
1419
 *******************************************************************/
1420
 
1421
/**
1422
 * Generic elements.
1423
 */
1424
.messages {
1425
  background-color: #fff;
1426
  border: 1px solid #b8d3e5;
1427
}
1428
 
1429
.preview {
1430
  background-color: #fcfce8;
1431
  border: 1px solid #e5e58f;
1432
}
1433
 
1434
div.status {
1435
  color: #33a333;
1436
  border-color: #c7f2c8;
1437
}
1438
 
1439
div.error, tr.error {
1440
  color: #a30000;
1441
  background-color: #FFCCCC;
1442
}
1443
 
1444
.form-item input.error, .form-item textarea.error {
1445
  border: 1px solid #c52020;
1446
  color: #363636;
1447
}
1448
 
1449
/**
1450
 * dblog.module
1451
 */
1452
tr.dblog-user {
1453
  background-color: #fcf9e5;
1454
}
1455
 
1456
tr.dblog-user td.active {
1457
  background-color: #fbf5cf;
1458
}
1459
 
1460
tr.dblog-content {
1461
  background-color: #fefefe;
1462
}
1463
 
1464
tr.dblog-content td.active {
1465
  background-color: #f5f5f5;
1466
}
1467
 
1468
tr.dblog-warning {
1469
  background-color: #fdf5e6;
1470
}
1471
 
1472
tr.dblog-warning td.active {
1473
  background-color: #fdf2de;
1474
}
1475
 
1476
tr.dblog-error {
1477
  background-color: #fbe4e4;
1478
}
1479
 
1480
tr.dblog-error td.active {
1481
  background-color: #fbdbdb;
1482
}
1483
tr.dblog-page-not-found, tr.dblog-access-denied {
1484
  background: #d7ffd7;
1485
}
1486
tr.dblog-page-not-found td.active, tr.dblog-access-denied td.active {
1487
  background: #c7eec7;
1488
}
1489
 
1490
/**
1491
 * Status report colors.
1492
 */
1493
table.system-status-report tr.error, table.system-status-report tr.error th {
1494
  background-color: #fcc;
1495
  border-color: #ebb;
1496
  color: #200;
1497
}
1498
table.system-status-report tr.warning, table.system-status-report tr.warning th {
1499
  background-color: #ffd;
1500
  border-color: #eeb;
1501
}
1502
table.system-status-report tr.ok, table.system-status-report tr.ok th {
1503
  background-color: #dfd;
1504
  border-color: #beb;
1505
}