Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 119 | Rev 122 | 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 {
444
	width: 520px;
445
	min-height: 650px;
446
	background-color: #FFFFFF;
447
	height: auto;
448
	float: left;
449
}
450
 
451
#left {
120 aurelien 452
	width: 190px;
93 aurelien 453
	padding:5px;
109 aurelien 454
	padding-left: 0px;
93 aurelien 455
	float: left;
456
	min-height: 650px
457
	background-color: #FFFFFF;
458
}
459
 
109 aurelien 460
#sidebar-left > div > div > div > ul.menu > li {
461
	padding-left:20px;
462
}
463
 
119 aurelien 464
#sidebar-left > div > div > div > ul.menu > li > a.active-trail {
465
    color: #FFFFFF;
466
    font-weight: bold;
467
    padding-left: 5px;
468
    -moz-border-radius: 0.9em 0.9em 0.9em 0.9em;
469
}
470
 
471
#sidebar-left a.active-trail {
472
	color: #800000;
473
	text-decoration: underline;
474
}
475
 
93 aurelien 476
#sidebar-left {
109 aurelien 477
	-webkit-border-radius-topright: 20px 20px;
478
	-webkit-border-radius-bottomright: 20px 20px;
479
	-moz-border-radius-topright: 20px 20px;
120 aurelien 480
	-moz-border-radius-bottomright: 0px 0px;
109 aurelien 481
	border-top-right-radius: 20px 20px;
482
	border-bottom-right-radius: 20px 20px;
120 aurelien 483
	background-color: #0396A6;
109 aurelien 484
	position:absolute;
485
	width: inherit;
93 aurelien 486
}
487
 
488
#sidebar-left > div > h2 {
489
	display: none;
490
}
491
 
492
#sidebar-left a {
493
	color: #FFFFFF;
494
	font-weight: bold;
109 aurelien 495
	padding-left: 5px;
93 aurelien 496
}
497
 
498
.content > div > ul > li {
499
	background: transparent url(images/puce_menu_niveau_1_triangle.png) no-repeat 3px 0.55em;
500
}
501
 
502
ul.menu > li {
503
	padding-top:5px;
109 aurelien 504
	padding-left:5px;
93 aurelien 505
}
506
 
109 aurelien 507
.menu_recourbe {
508
 
509
	-moz-border-radius-bottomleft: 901px 158px;
510
	-moz-border-radius-bottomright: 300px 24px;
511
    border-bottom-left-radius: 901px 158px;
512
    border-bottom-right-radius: 300px 24px;
513
 
514
	background-color: #FFFFFF;
515
	width:inherit;
516
	height: 30px;
517
	position: absolute;
518
	z-index: 50;
519
}
520
 
93 aurelien 521
#right {
120 aurelien 522
	width: 200px;
93 aurelien 523
	float: right;
524
	background-color: #FFFFFF;
525
}
526
 
109 aurelien 527
#right h2 {
528
	display: none;
529
}
530
 
531
.titre_bloc {
532
	color: #FFFFFF;
533
	font-weight: bold;
534
	background-color: #5F8DBF;
535
	-webkit-border-radius-topleft: 20px 20px;
536
	-moz-border-radius-topleft: 20px 20px;
537
	border-top-left-radius: 20px 20px;
538
}
539
 
540
.info_utilisateur, .formulaire_identification_ods {
541
 
542
	-webkit-border-radius-topleft: 20px 20px;
543
	-webkit-border-radius-bottomleft: 20px 20px;
544
	-moz-border-radius-topleft: 20px 20px;
545
	-moz-border-radius-bottomleft: 20px 20px;
546
	border-top-left-radius: 20px 20px;
547
	border-bottom-left-radius: 20px 20px;
548
	border: solid 1px;
549
	background-color: #F4F2EB;
550
    text-align: center;
120 aurelien 551
    border-color: #D1C6A8;
109 aurelien 552
}
553
 
554
.info_utilisateur a {
119 aurelien 555
	padding: 10px 10px 10px 25px;
109 aurelien 556
}
557
 
119 aurelien 558
#lien_mes_obs {
559
	background: url("images/mes_obs.png") no-repeat scroll 5px 0.75em transparent;
560
}
561
 
562
#lien_admin {
563
	background: transparent url(images/admin.png) no-repeat 1px 0.7em;
564
}
565
 
566
#lien_mon_profil {
567
	background: transparent url(images/mon_profil.png) no-repeat 1px 0.7em;
568
}
569
 
570
#lien_deconnexion {
571
	background: transparent url(images/deconnexion.png) no-repeat 1px 0.7em;
572
}
573
 
109 aurelien 574
.nb_inscrits {
575
	background: transparent url(images/puce-inscrits.png) no-repeat;
576
	padding: 5px;
577
	padding-left: 30px;
578
	text-align: right;
579
	font-size: 1.2em;
580
}
581
 
93 aurelien 582
/* We ensure the sidebars are still clickable using z-index */
583
#wrapper #container .sidebar {
584
  margin: 60px 0 5em;
585
  width: 210px;
586
  float: left;
587
  z-index: 2;
588
  position: relative;
589
  background-color: #FFFFFF;
590
}
591
 
592
#wrapper #container .sidebar .block {
593
  margin: 0 0 1.5em 0;
594
}
595
 
596
#sidebar-left .block {
109 aurelien 597
  padding: 25px 15px 0 0px;
93 aurelien 598
}
599
 
600
#sidebar-right .block {
601
  padding: 0 0px 0 15px;
602
}
603
 
604
.block .content {
605
  margin: 0.5em 0;
606
}
607
 
608
#sidebar-left .block-region {
609
  margin: 0 15px 0 0px; /* LTR */
610
}
611
 
612
#sidebar-right .block-region {
613
  margin: 0 0px 0 15px; /* LTR */
614
}
615
 
616
.block-region {
617
  padding: 1em;
618
  background: transparent;
619
  border: 2px dashed #b4d7f0;
620
  text-align: center;
621
  font-size: 1.3em;
622
}
623
 
624
/* Now we add the backgrounds for the main content shading */
625
#wrapper #container #center #squeeze {
626
 /** background: #fff url(images/bg-content.png) repeat-x 50% 0;**/
627
  position: relative;
628
}
629
 
630
#wrapper #container #center .right-corner {
631
 /**  background: transparent url(images/bg-content-right.png) no-repeat 100% 0; **/
632
  position: relative;
633
  left: 10px;
634
}
635
 
636
#wrapper #container #center .right-corner .left-corner {
637
  padding: 60px 25px 5em 35px;
638
 /**  background: transparent url(images/bg-content-left.png) no-repeat 0 0; **/
639
  margin-left: -10px;
640
  position: relative;
641
  left: -10px;
642
  min-height: 400px;
643
}
644
 
645
#wrapper #container #footer {
646
  float: none;
647
  clear: both;
648
  text-align: center;
649
  margin: 4em 0 -3em;
650
  color: #898989;
651
}
652
 
653
#wrapper #container .breadcrumb {
654
  position: absolute;
655
  top: 15px;
656
  left: 35px; /* LTR */
657
  z-index: 3;
658
}
659
 
660
/**
661
 * Header
662
 */
663
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
664
  color: #fff;
665
  font-weight: normal;
666
  text-shadow: #1659ac 0px 1px 3px;
667
  font-size: 1.5em;
668
}
669
 
670
#header {
671
	height: 180px;
672
	background-color: #FFFFFF;
673
	width: 955px;
674
}
675
 
676
.printemps {
677
	background: transparent url(images/bandeaux/bandeau-printemps.png) no-repeat 50% 0;
678
}
679
 
680
.ete {
681
	background: transparent url(images/bandeaux/bandeau-ete.png) no-repeat 50% 0;
682
}
683
 
684
.automne {
685
	background: transparent url(images/bandeaux/bandeau-automne.png) no-repeat 50% 0;
686
}
687
 
688
.hiver {
689
	background: transparent url(images/bandeaux/bandeau-hiver.png) no-repeat 50% 0;
690
}
691
 
692
#wrapper #container #header h1 a:hover {
693
  text-decoration: none;
694
}
695
 
696
#wrapper #container .breadcrumb {
697
  font-size: 0.92em;
698
}
699
 
700
#wrapper #container .breadcrumb, #wrapper #container .breadcrumb a {
701
  color: #529ad6;
702
}
703
 
704
#mission {
705
  padding: 1em;
706
  background-color: #fff;
707
  border: 1px solid #e0e5fb;
708
  margin-bottom: 2em;
709
}
710
 
711
#footer {
712
	height: 120px;
713
	background: transparent url(images/bandeaux/bandeau-bas.png) no-repeat 50% 0;
714
	clear:both;
715
	width:955px;
716
	margin-left:auto;
717
	margin-right: auto;
718
	background-color: #FFFFFF;
109 aurelien 719
	text-align: center;
720
	vertical-align: bottom;
93 aurelien 721
}
722
 
109 aurelien 723
.liens_bas_page {
724
	padding-top: 85px;
725
	color: #FF7F00;
726
	font-weight: bold;
727
}
728
 
729
.liens_bas_page a {
730
	color: #FF7F00;
731
	margin-left: 4px;
732
	margin-right: 4px;
733
	font-size: 1.1em;
734
}
735
 
93 aurelien 736
/**
737
 * Primary navigation
738
 */
739
ul.primary-links {
740
  margin: 0;
94 aurelien 741
  margin: -25px 0 0;
93 aurelien 742
  padding: 0;
743
  float: right; /* LTR */
744
  position: relative;
745
  z-index: 4;
109 aurelien 746
  height: 25px;
93 aurelien 747
}
748
 
109 aurelien 749
ul.primary-links li {
93 aurelien 750
  padding: 0;
94 aurelien 751
  height: 25px;
109 aurelien 752
  margin-left: 2px;
93 aurelien 753
  float: left; /* LTR */
754
  background-image: none;
755
  -moz-border-radius-topright: 1em;
756
  -moz-border-radius-topleft: 1em;
109 aurelien 757
  border-top-right-radius: 1em;
758
  border-top-left-radius: 1em;
93 aurelien 759
}
760
 
109 aurelien 761
ul.primary-links li.lien_primaire {
762
	margin-left: 3px;
763
	margin-top: 0px;
764
	margin-bottom: 0px;
765
	margin-right: 0px;
766
	-moz-box-shadow: 3px 0px 0 #aaa;
767
	-webkit-box-shadow: 3px 0px 0 #aaa;
768
	box-shadow: 3px 0px 0 #aaa;
769
}
770
 
771
 
772
li#lien_primaire_1 {
94 aurelien 773
	width: 20px;
93 aurelien 774
	background-color : #6C9ED8;
775
}
776
 
109 aurelien 777
li#lien_primaire_1 a img {
94 aurelien 778
	padding-top: 2px;
779
}
780
 
109 aurelien 781
li#lien_primaire_2 {
120 aurelien 782
	background-color : #BF3600;
93 aurelien 783
}
784
 
109 aurelien 785
li#lien_primaire_3 {
93 aurelien 786
	background-color : #9AC343;
787
}
788
 
109 aurelien 789
li#lien_primaire_4 {
93 aurelien 790
	background-color : #EF7B1D;
791
}
792
 
793
ul.primary-links li a, ul.primary-links li a:link, ul.primary-links li a:visited {
794
  display: block;
795
  margin: 0 1em;
796
  font-weight: bold;
797
  color: #FFFFFF;
94 aurelien 798
  padding-top: 2px;
93 aurelien 799
}
800
 
801
ul.primary-links li a:hover, ul.primary-links li a.active {
802
  color: #fff;
803
}
804
 
805
ul.primary-links li.active-trail {
94 aurelien 806
	height:35px;
109 aurelien 807
	margin-top:-10px;
93 aurelien 808
}
809
 
810
ul.primary-links li.active-trail a {
811
	padding-top: 5px;
812
}
813
 
814
/**
815
 * Secondary navigation
816
 */
817
ul.secondary-links {
818
  margin: 0;
819
  padding: 18px 0 0;
820
  float: right; /* LTR */
821
  clear: right; /* LTR */
822
  position: relative;
823
  z-index: 4;
824
}
825
 
826
ul.secondary-links li {
827
  margin: 0;
828
  padding: 0;
829
  float: left; /* LTR */
830
  background-image: none;
831
}
832
 
833
ul.secondary-links li a, ul.secondary-links li a:link, ul.secondary-links li a:visited {
834
  display: block;
835
  margin: 0 1em;
836
  padding: .75em 0 0;
837
  color: #cde3f1;
838
  background: transparent;
839
}
840
 
841
ul.secondary-links li a:hover, ul.secondary-links li a.active {
842
  color: #cde3f1;
843
  background: transparent;
844
}
845
 
846
/**
847
 * Local tasks
848
 */
849
ul.primary, ul.primary li, ul.secondary, ul.secondary li {
850
  border: 0;
851
  background: none;
852
  margin: 0;
853
  padding: 0;
854
}
855
 
856
#tabs-wrapper {
857
  margin: 0 -26px 1em;
858
  padding: 0 26px;
859
  border-bottom: 1px solid #e9eff3;
860
  position: relative;
861
}
862
ul.primary {
863
  padding: 0.5em 0 10px;
864
  float: left; /* LTR */
865
}
866
ul.secondary {
867
  clear: both;
868
  text-align: left; /* LTR */
869
  border-bottom: 1px solid #e9eff3;
870
  margin: -0.2em -26px 1em;
871
  padding: 0 26px 0.6em;
872
}
873
h2.with-tabs {
874
  float: left; /* LTR */
875
  margin: 0 2em 0 0; /* LTR */
876
  padding: 0;
877
}
878
 
879
ul.primary li a, ul.primary li.active a, ul.primary li a:hover, ul.primary li a:visited,
880
ul.secondary li a, ul.secondary li.active a, ul.secondary li a:hover, ul.secondary li a:visited {
881
  border: 0;
882
  background: transparent;
883
  padding: 4px 1em;
884
  margin: 0 0 0 1px; /* LTR */
885
  height: auto;
886
  text-decoration: none;
887
  position: relative;
888
  top: -1px;
889
  display: inline-block;
890
}
891
ul.primary li.active a, ul.primary li.active a:link, ul.primary li.active a:visited, ul.primary li a:hover,
892
ul.secondary li.active a, ul.secondary li.active a:link, ul.secondary li.active a:visited, ul.secondary li a:hover {
893
  background: url(images/bg-tab.png) repeat-x 0 50%;
894
  color: #fff;
895
}
896
ul.primary li.active a,
897
ul.secondary li.active a {
898
  font-weight: bold;
899
}
900
 
901
/**
902
 * Nodes & comments
903
 */
904
.node {
905
  border-bottom: 1px solid #e9eff3;
906
  margin: 0 0px 1.5em;
120 aurelien 907
  padding: 1.5em 13px;
93 aurelien 908
}
909
 
910
ul.links li, ul.inline li {
911
  margin-left: 0;
912
  margin-right: 0;
913
  padding-left: 0; /* LTR */
914
  padding-right: 1em; /* LTR */
915
  background-image: none;
916
}
917
 
918
.node .links, .comment .links {
919
  text-align: left; /* LTR */
920
}
921
 
922
.node .links ul.links li, .comment .links ul.links li {}
923
.terms ul.links li {
924
  margin-left: 0;
925
  margin-right: 0;
926
  padding-right: 0;
927
  padding-left: 1em;
928
}
929
 
930
.picture, .comment .submitted {
931
  float: right; /* LTR */
932
  clear: right; /* LTR */
933
  padding-left: 1em; /* LTR */
934
}
935
 
936
.new {
937
  color: #ffae00;
938
  font-size: 0.92em;
939
  font-weight: bold;
940
  float: right; /* LTR */
941
}
942
 
943
.terms {
944
  float: right; /* LTR */
945
}
946
 
947
.preview .node, .preview .comment, .sticky {
948
  margin: 0;
949
  padding: 0.5em 0;
950
  border: 0;
951
  background: 0;
952
}
953
 
954
.sticky {
955
  padding: 1em;
956
  background-color: #fff;
957
  border: 1px solid #e0e5fb;
958
  margin-bottom: 2em;
959
}
960
 
961
#comments {
962
  position: relative;
963
  top: -1px;
964
  border-bottom: 1px solid #e9eff3;
965
  margin: -1.5em -25px 0;
966
  padding: 0 25px;
967
}
968
 
969
#comments h2.comments {
970
  margin: 0 -25px;
971
  padding: .5em 25px;
972
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
973
}
974
 
975
.comment {
976
  margin: 0 -25px;
977
  padding: 1.5em 25px 1.5em;
978
  border-top: 1px solid #e9eff3;
979
}
980
 
981
.indented {
982
  margin-left: 25px; /* LTR */
983
}
984
 
985
.comment h3 a.active {
986
  color: #494949;
987
}
988
 
989
.node .content, .comment .content {
990
  margin: 0.6em 0;
991
}
992
 
993
/**
994
 * Aggregator.module
995
 */
996
#aggregator {
997
  margin-top: 1em;
998
}
999
#aggregator .feed-item-title {
1000
  font-size: 160%;
1001
  line-height: 130%;
1002
}
1003
#aggregator .feed-item {
1004
  border-bottom: 1px solid #e9eff3;
1005
  margin: -1.5em -31px 1.75em;
1006
  padding: 1.5em 31px;
1007
}
1008
#aggregator .feed-item-categories {
1009
  font-size: 0.92em;
1010
}
1011
#aggregator .feed-item-meta {
1012
  font-size: 0.92em;
1013
  color: #898989;
1014
}
1015
 
1016
/**
1017
 * Color.module
1018
 */
1019
#palette .form-item {
1020
  border: 1px solid #fff;
1021
}
1022
#palette .item-selected {
1023
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1024
  border: 1px solid #d9eaf5;
1025
}
1026
 
1027
/**
1028
 * Menu.module
1029
 */
1030
tr.menu-disabled {
1031
  opacity: 0.5;
1032
}
1033
tr.odd td.menu-disabled {
1034
  background-color: #edf5fa;
1035
}
1036
tr.even td.menu-disabled {
1037
  background-color: #fff;
1038
}
1039
 
1040
/**
1041
 * Poll.module
1042
 */
1043
.poll .bar {
1044
  background: #fff url(images/bg-bar-white.png) repeat-x 0 0;
1045
  border: solid #f0f0f0;
1046
  border-width: 0 1px 1px;
1047
}
1048
 
1049
.poll .bar .foreground {
1050
  background: #71a7cc url(images/bg-bar.png) repeat-x 0 100%;
1051
}
1052
 
1053
.poll .percent {
1054
  font-size: .9em;
1055
}
1056
 
1057
/**
1058
 * Autocomplete.
1059
 */
1060
#autocomplete li {
1061
  cursor: default;
1062
  padding: 2px;
1063
  margin: 0;
1064
}
1065
 
1066
/**
1067
 * Collapsible fieldsets
1068
 */
1069
fieldset {
1070
  margin: 1em 0;
1071
  padding: 1em;
1072
  border: 1px solid #d9eaf5;
1073
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1074
}
1075
 
1076
/* Targets IE 7. Fixes background image in field sets. */
1077
*:first-child+html fieldset {
1078
  padding: 0 1em 1em;
1079
  background-position: 0 .75em;
1080
  background-color: transparent;
1081
}
1082
 
1083
*:first-child+html fieldset > .description, *:first-child+html fieldset .fieldset-wrapper .description {
1084
  padding-top: 1em;
1085
}
1086
 
1087
fieldset legend {
1088
  /* Fix disappearing legend in FFox */
1089
  display: block;
1090
}
1091
 
1092
*:first-child+html fieldset legend, *:first-child+html fieldset.collapsed legend {
1093
  display: inline;
1094
}
1095
 
1096
html.js fieldset.collapsed {
1097
  background: transparent;
1098
  padding-top: 0;
1099
  padding-bottom: .6em;
1100
}
1101
 
1102
html.js fieldset.collapsible legend a {
1103
  padding-left: 2em; /* LTR */
1104
  background: url(images/menu-expanded.gif) no-repeat 0% 50%; /* LTR */
1105
}
1106
 
1107
html.js fieldset.collapsed legend a {
1108
  background: url(images/menu-collapsed.gif) no-repeat 0% 50%; /* LTR */
1109
}
1110
 
1111
/**
1112
 * Syndication icons and block
1113
 */
1114
#block-node-0 h2 {
1115
  float: left; /* LTR */
1116
  padding-right: 20px; /* LTR */
1117
}
1118
 
1119
#block-node-0 img, .feed-icon {
1120
  float: right; /* LTR */
1121
  padding-top: 4px;
1122
}
1123
 
1124
#block-node-0 .content {
1125
  clear: right; /* LTR */
1126
}
1127
 
1128
/**
1129
 * Login Block
1130
 */
1131
#user-login-form {
1132
  text-align: center;
1133
}
1134
#user-login-form ul {
1135
  text-align: left; /* LTR */
1136
}
1137
 
1138
/**
1139
 * User profiles.
1140
 */
1141
.profile {
1142
  margin-top: 1.5em;
1143
}
1144
.profile h3 {
1145
  border-bottom: 0;
1146
  margin-bottom: 1em;
1147
}
1148
.profile dl {
1149
  margin: 0;
1150
}
1151
.profile dt {
1152
  font-weight: normal;
1153
  color: #898989;
1154
  font-size: 0.92em;
1155
  line-height: 1.3em;
1156
  margin-top: 1.4em;
1157
  margin-bottom: 0.45em;
1158
}
1159
.profile dd {
1160
  margin-bottom: 1.6em;
1161
}
1162
 
1163
/**
1164
 * Admin Styles
1165
 */
1166
div.admin-panel,
1167
div.admin-panel .description,
1168
div.admin-panel .body,
1169
div.admin,
1170
div.admin .left,
1171
div.admin .right,
1172
div.admin .expert-link,
1173
div.item-list,
1174
.menu {
1175
  margin: 0;
1176
  padding: 0;
1177
}
1178
 
1179
div.admin .left {
1180
  float: left; /* LTR */
1181
  width: 48%;
1182
}
1183
div.admin .right {
1184
  float: right; /* LTR */
1185
  width: 48%;
1186
}
1187
 
1188
div.admin-panel {
1189
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1190
  padding: 1em 1em 1.5em;
1191
}
1192
div.admin-panel .description {
1193
  margin-bottom: 1.5em;
1194
}
1195
div.admin-panel dl {
1196
  margin: 0;
1197
}
1198
div.admin-panel dd {
1199
  color: #898989;
1200
  font-size: 0.92em;
1201
  line-height: 1.3em;
1202
  margin-top: -.2em;
1203
  margin-bottom: .65em;
1204
}
1205
 
1206
table.system-status-report th {
1207
  border-color: #d3e7f4;
1208
}
1209
 
1210
#autocomplete li.selected, tr.selected td, tr.selected td.active {
1211
  background: #027ac6;
1212
  color: #fff;
1213
}
1214
 
1215
tr.selected td a:link, tr.selected td a:visited, tr.selected td a:active {
1216
  color: #d3e7f4;
1217
}
1218
 
1219
tr.taxonomy-term-preview {
1220
  opacity: 0.5;
1221
}
1222
 
1223
tr.taxonomy-term-divider-top {
1224
  border-bottom: none;
1225
}
1226
 
1227
tr.taxonomy-term-divider-bottom {
1228
  border-top: 1px dotted #CCC;
1229
}
1230
 
1231
/**
1232
 * CSS support
1233
 */
1234
 
1235
/*******************************************************************
1236
 * Color Module: Don't touch                                       *
1237
 *******************************************************************/
1238
 
1239
/**
1240
 * Generic elements.
1241
 */
1242
.messages {
1243
  background-color: #fff;
1244
  border: 1px solid #b8d3e5;
1245
}
1246
 
1247
.preview {
1248
  background-color: #fcfce8;
1249
  border: 1px solid #e5e58f;
1250
}
1251
 
1252
div.status {
1253
  color: #33a333;
1254
  border-color: #c7f2c8;
1255
}
1256
 
1257
div.error, tr.error {
1258
  color: #a30000;
1259
  background-color: #FFCCCC;
1260
}
1261
 
1262
.form-item input.error, .form-item textarea.error {
1263
  border: 1px solid #c52020;
1264
  color: #363636;
1265
}
1266
 
1267
/**
1268
 * dblog.module
1269
 */
1270
tr.dblog-user {
1271
  background-color: #fcf9e5;
1272
}
1273
 
1274
tr.dblog-user td.active {
1275
  background-color: #fbf5cf;
1276
}
1277
 
1278
tr.dblog-content {
1279
  background-color: #fefefe;
1280
}
1281
 
1282
tr.dblog-content td.active {
1283
  background-color: #f5f5f5;
1284
}
1285
 
1286
tr.dblog-warning {
1287
  background-color: #fdf5e6;
1288
}
1289
 
1290
tr.dblog-warning td.active {
1291
  background-color: #fdf2de;
1292
}
1293
 
1294
tr.dblog-error {
1295
  background-color: #fbe4e4;
1296
}
1297
 
1298
tr.dblog-error td.active {
1299
  background-color: #fbdbdb;
1300
}
1301
tr.dblog-page-not-found, tr.dblog-access-denied {
1302
  background: #d7ffd7;
1303
}
1304
tr.dblog-page-not-found td.active, tr.dblog-access-denied td.active {
1305
  background: #c7eec7;
1306
}
1307
 
1308
/**
1309
 * Status report colors.
1310
 */
1311
table.system-status-report tr.error, table.system-status-report tr.error th {
1312
  background-color: #fcc;
1313
  border-color: #ebb;
1314
  color: #200;
1315
}
1316
table.system-status-report tr.warning, table.system-status-report tr.warning th {
1317
  background-color: #ffd;
1318
  border-color: #eeb;
1319
}
1320
table.system-status-report tr.ok, table.system-status-report tr.ok th {
1321
  background-color: #dfd;
1322
  border-color: #beb;
1323
}