Subversion Repositories Sites.obs-saisons.fr

Rev

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