Merge remote branch 'origin/xorg/maint' into xorg/master
[platal.git] / htdocs / css / keynote.css
CommitLineData
3a19ba1d 1/***************************************************************************
5e1513f6 2 * Copyright (C) 2003-2011 Polytechnique.org *
3a19ba1d 3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
21/*******************************************************************************
22 1 Styles par défauts
23 [ balises sans attributs ou classes sans contexte ]
24*******************************************************************************/
25
26body {
27 font-family: "Arial", sans-serif;
bb7af3cd 28 font-size: 10pt;
09ad0df6 29 background: url('../images/skins/keynote_bg.png') #4f4e63 top left repeat-x fixed;
3a19ba1d 30 color: #fff;
31}
32
33a:link, a:visited, a:active, a:hover {
8bf24eab 34 color: #ddd;
09ad0df6 35 background: inherit;
3a19ba1d 36}
09ad0df6 37a:hover { color: #999; }
3a19ba1d 38
09ad0df6 39img { vertical-align: middle; }
40a img { border: 0px; }
41td { vertical-align: top; }
787bb3d7 42li { padding-left: 3px; padding-right: 3px;
09ad0df6 43 text-align: justify; }
44hr { text-align: center; }
4f355064 45dt { font-weight: bold; }
3a19ba1d 46
47fieldset {
67d7487d 48 border: 1px solid #fff;
49 border-bottom: 0px;
50 border-right: 0px;
09ad0df6 51 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
e74946a3 52 color: #000;
09ad0df6 53 margin: 1em 0 1em 0;
334e6d16 54 text-align: justify;
fe422928
FB
55 -webkit-border-top-left-radius: 5px;
56 -moz-border-radius-topleft: 5px;
3a19ba1d 57}
3a19ba1d 58legend {
67d7487d 59 border-bottom: 1px solid #666;
60 border-right: 1px solid #666;
61 border-top: 1px solid #fff;
62 border-left: 1px solid #fff;
09ad0df6 63 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbaa top left repeat-x fixed;
e74946a3 64 color: #000;
85b45717 65 font-weight: bold;
09ad0df6 66
85b45717 67 padding: 2px 8px 2px 4px;
fe422928
FB
68 -webkit-border-top-left-radius: 5px;
69 -moz-border-radius-topleft: 5px;
3a19ba1d 70}
71
09ad0df6 72.center { text-align: center; }
73.right { text-align: right; }
74.middle { vertical-align: middle; }
75.smaller { font-size: smaller; font-style: italic; }
76.spacer { clear: both; }
77
78.float2 { float: left; width: 49%; }
79.float3 { float: left; width: 33%; }
80
3a19ba1d 81/*******************************************************************************
82 2 Styles <p>, <div>, <span>, <li>
83 [ styles classiques d'effets de texte ]
84*******************************************************************************/
85
86p {
3c20ef02 87 margin-bottom: 0.4em;
3a19ba1d 88 text-align: justify;
55fd4ff4
FB
89 text-indent: 2em;
90}
91
92p.smaller {
93 text-indent: 0;
3a19ba1d 94}
95
71a753d3
FB
96.errors {
97 width: 98%;
98 border: 1px solid #f00;
99 margin-top: 10px;
100 background-color: #200;
101}
102
e00bc67e
FB
103.warnings {
104 width: 98%;
105 border: 1px solid #ff0;
106 margin-top: 10px;
107 background-color: #220;
108}
109
71a753d3
FB
110.success {
111 width: 98%;
112 border: 1px solid #0d3;
113 margin-top: 10px;
114 background-color: #021;
115}
116
3a19ba1d 117.erreur {
118 font-weight: bold;
3336093a 119 color: #d00;
3a19ba1d 120 background: inherit;
121 margin-top: 0.5em;
122 margin-bottom: 0.5em;
123}
124
125.erreur a:link, .erreur a:visited, .erreur a:active, .erreur a:hover {
126 color: #ff3333;
127 background: inherit;
128}
129
93553cea
FB
130input.error, textarea.error {
131 background-color: #faa;
132}
133
0b14f91d
FB
134input.valid, textarea.valid {
135 background-color: #afa;
136}
137
138input.warning, textarea.warning {
139 background-color: #fda;
140}
141
3a19ba1d 142h1 {
09ad0df6 143 background-color: inherit;
55fd4ff4 144 margin: 0.5em 0 0.5em -8px;
0811cadd 145 text-indent: 0em;
55fd4ff4 146 padding: 20px 0 0 0px;
3c20ef02 147
0811cadd 148 font-size: 130%;
09ad0df6 149 font-family: "helvetica", sans-serif;
150 font-weight: bolder;
151 text-align: left;
152
0811cadd 153 color: #bdf;
3a19ba1d 154}
155
156h2 {
55fd4ff4 157 padding: 15px 0em 0em 0em;
3c20ef02 158 margin: 0;
55fd4ff4
FB
159 margin-left: -8px;
160 font-size: 110%;
3a19ba1d 161 font-weight: bold;
09ad0df6 162 background: inherit;
cbc1b9c0 163 color: #77c;
3a19ba1d 164}
165
166h3 {
167 margin: 0em;
168 font-weight: bold;
169 padding: 0.25em;
55fd4ff4 170 font-size: 105%;
3a19ba1d 171}
172
173p.explication, div.explication {
174 font-style: italic;
175 padding: 0em 1ex 1ex 1ex;
176}
177
178li.spaced {
3c20ef02 179 padding-top: 0.2em;
180 padding-bottom: 0.3em;
3a19ba1d 181 text-align: justify;
182}
183
55fd4ff4
FB
184pre {
185 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
186 margin: 0em 0em;
187 padding: 0.3em 1.5em;
188}
189
3551f4a0
FB
190.pair pre {
191 background: inherit;
192}
193
adcc7deb 194
3a19ba1d 195/*******************************************************************************
196 3 Tableaux bicolores + classes utiles
197 [ Tableaux à lignes alternées, en taille normale, ou tiny ]
198*******************************************************************************/
199table.bicol, table.tinybicol {
09ad0df6 200 color: inherit;
201 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
202 border-width: 1px 0 0 1px;
203 border-style: solid;
204 border-color: #fff;
205 border-collapse: collapse;
3a19ba1d 206}
67d7487d 207table.bicol { width: 100%; margin-left: 0; }
09ad0df6 208table.tinybicol { width: 70%; margin-left: 15%; }
3a19ba1d 209
210table.tinybicol tr.pair, table.bicol tr.pair {
09ad0df6 211 color: inherit;
212 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbca top left repeat-x fixed;
3a19ba1d 213}
214
215table.tinybicol th, table.bicol th {
8bf24eab 216 color: #fff;
09ad0df6 217 font-weight: bold;
218 text-align: center;
219 vertical-align: middle;
0afc7e1e 220 background: none;
66872684 221 background-color: #000;
222}
223
224table.tinybicol tr:first-child th, table.bicol tr:first-child th {
787bb3d7 225 color: #fff;
09ad0df6 226 background: url('../images/skins/keynote_title.gif') #000 top left repeat-x;
3a19ba1d 227}
66872684 228
3a19ba1d 229table.tinybicol td, table.bicol td {
230 color: #000000;
231 background: inherit;
232}
233
2234ecd2
SJ
234table.tinybicol td.error, table.bicol td.error {
235 background: #faa;
236}
237
238table.tinybicol td.warning, table.bicol td.warning {
239 background: #fda;
240}
241
242table.tinybicol td.valid, table.bicol td.valid {
243 background: #afa;
244}
245
3a19ba1d 246table.tinybicol td, table.bicol td, table.tinybicol tr, table.bicol tr { padding: 4px; }
247
248td.half { width: 50%; padding: 4px; }
3950bc21 249.titre {
3a19ba1d 250 color: #000000;
251 background: inherit;
252 font-weight: bold;
253}
254td.action {
255 white-space: nowrap;
256 text-align: right;
257 font-weight: bold;
258 vertical-align: middle;
259}
260td.action a { padding: 0px 2px 0px 2px; }
261
9a1cb883
FB
262th.grayed {
263 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
264 font-style: italic;
265}
266
767f6985
SJ
267div.titre {
268 color: #000000;
269 background: inherit;
270 font-weight: bold;
271}
272
273span.titre {
274 color: #000000;
275 background: inherit;
276 font-weight: bold;
277}
278
3a19ba1d 279/*******************************************************************************
280 4 Tableau de choix de skins
281 [ Styles pour les tableaux de types de ceux des skins ]
282*******************************************************************************/
283
284#skin {
09ad0df6 285 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
3a19ba1d 286 color: #000;
3a19ba1d 287 border-top: 1px solid #fff;
67d7487d 288 width: 100%;
3a19ba1d 289}
290#skin td {
291 border-bottom: 1px solid #fff;
3a19ba1d 292 vertical-align: middle;
293}
294#skin td.skigauche {
09ad0df6 295 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbca top left repeat-x fixed;
296 color: inherit;
297 vertical-align: middle;
3a19ba1d 298}
09ad0df6 299#skin td.skimilieu {
300 padding-left: 1em;
301 width: 100%;
302}
303#skin td.skidroite { padding: 0; }
3a19ba1d 304
305/*******************************************************************************
306 5 Contacts
307 [ Styles liés à l'affichage de contacts ]
308*******************************************************************************/
309
09ad0df6 310div.contact-list {
311 width: 98%;
d6cf4ac1 312 margin-left: 5px;
09ad0df6 313}
3a19ba1d 314div.contact-list div.contact {
315 border-top: 1px solid #fff;
ea62a170 316 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
3a19ba1d 317 color: #000;
318}
319
e1bb6b50
FB
320div.contact {
321 -webkit-border-top-left-radius: 10px;
322 -moz-border-radius-topleft: 10px;
323}
324
ea62a170 325div.contact-list div.grayed {
3a19ba1d 326 font-style: italic;
09ad0df6 327 color: #444;
ea62a170
FB
328 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
329}
330
331div.contact-list div.contact:hover {
09ad0df6 332 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbca top left repeat-x fixed;
3a19ba1d 333}
334
ea62a170 335.contact .photo {
e1bb6b50
FB
336 -webkit-border-top-left-radius: 10px;
337 -moz-border-radius-topleft: 10px;
ea62a170
FB
338 float: left;
339}
340
341.contact .photo img {
342 width: 40px;
343 margin-right: 4px;
e1bb6b50
FB
344 -webkit-border-top-left-radius: 10px;
345 -moz-border-radius-topleft: 10px;
ea62a170
FB
346}
347
ea62a170
FB
348div.contact div.identity {
349 float: left;
9900746d 350 width: 85%;
ea62a170
FB
351}
352
3a19ba1d 353div.contact div.nom {
354 font-weight: bold;
cd15897d 355 padding-left: 2px;
3a19ba1d 356}
357
8907f263
FB
358div.contact div.nom a {
359 text-decoration: none;
360 font-size: 100%;
361}
362
f711b03f 363div.contact div.edu {
3a19ba1d 364}
365
366div.contact div.bits {
367 text-align: right;
368 float: right;
9900746d 369 width: 14%;
3a19ba1d 370}
371
372div.contact div.long {
09ad0df6 373 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
374 width: 100%;
375 clear: both;
376 color: inherit;
cd15897d 377 padding: 1px 0px;
3a19ba1d 378}
379
09ad0df6 380div.long table { width: 100%; }
1322ba86
FB
381div.long td.lt { width: 15%; font-style: italic; }
382div.long td.rt { width: 85%; }
09ad0df6 383
3a19ba1d 384/*******************************************************************************
385 6 Profil
386 [ onglets des profils ]
387*******************************************************************************/
e1635d16 388
16019034
FB
389.wizard, .ui-tabs-nav {
390 margin: 0;
391 padding: 0;
e1635d16 392 margin-left: -16px;
16019034 393 clear: both;
e1635d16
FB
394}
395
16019034 396.wizard .wiz_header, .ui-tabs-nav {
e1635d16
FB
397 height: 32px;
398 width: 100%;
d3dbea90 399 background: url('../images/skins/wiz_background.png') top right repeat-x;
e1635d16 400 margin-bottom: 1em;
16019034 401 text-align: left;
e1635d16
FB
402}
403
16019034 404.wizard .wiz_header .wiz_tab, .ui-tabs-nav li {
edbf7d44 405 background: url('../images/skins/wiz_normal.png') #aaa top left repeat-x;
e1635d16
FB
406 height: 100%;
407 text-align: center;
408 font-size: 75%;
409 border-right: 1px solid #888;
16019034
FB
410 float: left;
411 vertical-align: middle;
e1635d16
FB
412}
413
16019034
FB
414.ui-tabs-nav li {
415 margin: 0;
416 padding: 0;
417 list-style-type: none;
418}
419
420.wizard .wiz_header .wiz_tab:hover, .ui-tabs-nav li:hover {
58faadd0 421 background: url('../images/skins/wiz_hover.png') #777 top left repeat-x;
e1635d16
FB
422 color: #fff;
423}
424
16019034 425.wizard .wiz_header .active, .wizard .wiz_header .active:hover, li.ui-tabs-selected {
58faadd0 426 background: url('../images/skins/wiz_active.png') #444 top left repeat-x;
d3dbea90 427 color: #fff;
e1635d16
FB
428}
429
16019034 430.wizard .wiz_header a, .ui-tabs-nav a {
e1635d16
FB
431 color: #000;
432 text-decoration: none;
e1635d16
FB
433}
434
16019034 435.wizard .wiz_header a.active, .ui-tabs-selected a {
e1635d16
FB
436 color: #fff;
437}
438
16019034 439.wizard .wiz_content, .ui-tabs-panel {
e1635d16 440 margin-left: 16px;
16019034 441 clear: both;
e1635d16
FB
442}
443
7568a515 444.flags .texte {
3a19ba1d 445 font-size: smaller;
446 font-weight: bold;
ee12da4e
FB
447 margin-left: -6px;
448 padding: 0 12px 0 0;
3a19ba1d 449}
ee12da4e
FB
450.flags img {
451 padding: 0 6px 0 0;
3a19ba1d 452}
453
3a19ba1d 454/*******************************************************************************
455 7 fiche.php & fiche_referent.php
456 [ cas de la fiche ]
457*******************************************************************************/
458
459#fiche {
09ad0df6 460 width: 740px;
3a19ba1d 461 color: #000;
3a19ba1d 462 border-top: 1px solid #fff;
463 border-left: 1px solid #fff;
09ad0df6 464 background: url('../images/skins/keynote_bg_lighter.png') #848495 top left repeat-x fixed;
465 vertical-align: top;
3a19ba1d 466}
467
468#fiche em {
469 color: #777;
09ad0df6 470 background: inherit;
3a19ba1d 471 font-weight: bolder;
472}
473
474#fiche h2 {
475 background: url('../images/skins/keynote_title.gif') bottom repeat-x;
09ad0df6 476 background-color: inherit;
2ec5794f 477 border-bottom: 1px solid #202020;
3a19ba1d 478 color: #fff;
3a19ba1d 479 height: 17px;
09ad0df6 480 margin: 0.5em 0;
481 padding-left: 0.5em;
482 font-weight: bold;
483}
484
03a6316f 485#fiche .part {
486 float: left;
487 clear: left;
6261a1b5 488 width: 70%;
03a6316f 489 padding-right: 0em;
490 margin-right: 0em;
491}
492
493#fiche #photo {
494 float: right;
495 padding-left: 0em;
496 margin-left: 0em;
497 clear: right;
6261a1b5 498 width: 30%;
3a19ba1d 499}
500
03a6316f 501#fiche #photo img {
502 width: 100%;
503}
3a19ba1d 504
505#fiche_identite div.civilite {
506 text-align: center;
507 font-weight: bold;
787bb3d7
FB
508 width: 80%;
509 float: left;
3a19ba1d 510 color: #fff;
09ad0df6 511 background: inherit;
03a6316f 512 padding-top: 0.5ex;
09ad0df6 513}
514
515#fiche_identite div.maj {
03a6316f 516 float: right;
517 width: 19%;
09ad0df6 518 font-size: 75%;
519 text-align: right;
520 vertical-align: top;
03a6316f 521 padding: 0.5ex 1ex 1ex 0ex;
09ad0df6 522 clear: right;
3a19ba1d 523}
524
525#fiche_identite div.contact {
09ad0df6 526 clear: both;
527 margin: 1em;
528 padding: 1ex;
529 border-width: 1px 0 0 1px;
530 border-style: dotted;
531 border-color: #fff;
532 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbca top left repeat-x fixed;
533 color: inherit;
3a19ba1d 534}
535
536#fiche_identite div.contact em {
537 color: #aaa;
09ad0df6 538 background: inherit;
3a19ba1d 539}
540
03a6316f 541
3a19ba1d 542#fiche_identite div.email {
787bb3d7 543 clear: left;
3a19ba1d 544 float: left;
545}
6261a1b5 546
3a19ba1d 547#fiche_identite div.mob {
548 float: right;
549 clear: right;
550 text-align: right;
551}
552
553#fiche_identite div.formation {
554 margin: 0em 1em;
787bb3d7 555 clear: both;
3a19ba1d 556}
557
558div.adresse {
16f20f22 559 min-width: 30%;
3a19ba1d 560 padding: 0px;
6261a1b5 561 margin: 0px 1% 2ex 2%;
3a19ba1d 562}
563
03a6316f 564#fiche .medal_frame {
565 float: left;
566 width: 33%;
567}
568
569#fiche .medal_frame img {
570 float: left;
571 padding: 0ex 1ex;
572}
573
574#fiche .medal_text {
575 vertical-align: middle;
576 font-weight: bold;
577}
578
3a19ba1d 579/* only for fiche_referent.php*/
580
6261a1b5 581#fiche_referent .part {
582 width: 100%;
583}
584
585#fiche_referent #fiche_identite div.civilite {
09ad0df6 586 width: 100%;
587}
588
589#fiche_referent div.rubrique_referent{
590 float: left;
6261a1b5 591 width: 30%;
09ad0df6 592 padding: 0px;
6261a1b5 593 margin: 0px 1% 1ex 2%;
594 text-align: justify;
09ad0df6 595}
596
3a19ba1d 597#fiche_referent em {
598 color: #777;
09ad0df6 599 background: inherit;
3a19ba1d 600 font-weight: bolder;
601}
09ad0df6 602#fiche_referent ul { margin: 0px; padding: 0px 1em; }
603#fiche_referent li { font-weight: bold; margin: 0px; padding: 0px; text-align: left; }
3a19ba1d 604
605/*******************************************************************************
606 A SKIN
607 [ choix de classes faites par le skinneur
608*******************************************************************************/
609
610#dev {
3336093a 611 width: auto;
3a19ba1d 612 text-align: center;
613 padding: 1px;
614
09ad0df6 615 background: url('../images/skins/keynote_bg_verylighter.png') #bbbbaa top left repeat-x fixed;
3336093a 616 color: #000;
09ad0df6 617 font-weight: bold;
3a19ba1d 618}
619
3336093a 620#dev a { text-decoration: none; }
3a19ba1d 621
d3f26be9 622.backtrace div.hide { display: none; }
55fd4ff4
FB
623.backtrace:hover div.hide { display: block; }
624.backtrace h1 { padding: 0; margin: 0; }
3a19ba1d 625
626#suid {
627 color: red;
628 background: #ffc0cb;
09ad0df6 629 width: auto;
3a19ba1d 630 font-weight: bold;
a3afa47c 631 text-align: center;
632}
633#suid a {
634 color: red;
635 background: inherit;
636 text-decoration: none;
637 display: block;
638}
639#suid:hover {
640 color: red;
641 background: #ffffcb;
642}
643#suid a:hover {
644 color: #ff7000;
645 background: inherit;
3a19ba1d 646}
3a19ba1d 647
648#body {
a3afa47c 649 width: 800px;
3a19ba1d 650 margin-left: auto;
651 margin-right: auto;
652}
653
654#body-logo {
655 width: 140px;
8bf24eab 656 padding-top: 0;
09ad0df6 657 text-align: center;
3a19ba1d 658}
659
660#body-top {
cd15897d 661 padding: 0 0 16px 0;
09ad0df6 662 text-align: center;
663 font-size: 85%;
664 border-bottom: 1px solid #fff;
3a19ba1d 665}
09ad0df6 666#body-top table { width: 100%; padding: 4px; }
667#body-top .date-heure { text-align: left; }
668#body-top .inscrits { text-align: right; }
669
3a19ba1d 670
671#body-bottom {
4f355064 672 border-top: 1px solid #aaa;
09ad0df6 673 text-align: center;
674 padding: 4px;
675 font-size: 75%;
676 font-family: "MS Sans Serif", sans-serif;
3a19ba1d 677}
678
679#body-menu {
09ad0df6 680 width: 140px;
681 text-align: center;
bb7af3cd 682 font-size: 85%;
09ad0df6 683 font-weight: bold;
684 white-space: nowrap;
3a19ba1d 685 border-right: 1px solid #fff;
686}
687
09ad0df6 688#body-menu .menu_item {
689 text-align: left;
690 padding: 2px;
691}
692
3a19ba1d 693#body-menu a:link, #body-menu a:visited, #body-menu a:active, #body-meny a:hover {
694 color: #fff;
09ad0df6 695 background: inherit;
3a19ba1d 696 text-decoration: none;
697}
698
699#body-menu .menu_item:hover {
09ad0df6 700 color: inherit;
3a19ba1d 701 background-color: #556;
702}
703
704#body-menu .menu_title {
705 color: #fff;
706 height: 17px;
2ec5794f 707 background: url('../images/skins/keynote_title.gif') bottom repeat-x;
09ad0df6 708 background-color: inherit;
2ec5794f 709 border-bottom: 1px solid #202020;
09ad0df6 710 padding: 4px 0 0 0;
3a19ba1d 711 text-align: center;
2ec5794f 712 vertical-align: bottom;
3a19ba1d 713}
714
715#content {
09ad0df6 716 width: 600px;
717 padding: 0 0 4px 16px;
3a19ba1d 718 vertical-align: top;
09ad0df6 719 font-size: 95%;
3a19ba1d 720}
721
3b2f9d11 722.quick_search {
3a19ba1d 723 color: gray;
09ad0df6 724 background: #fff;
3a19ba1d 725 text-align: right;
726}
727
728div#content {
729 padding: 1em;
730 margin: 0em;
731}
732
733#content input {
734 font-size: 95%;
735}
736
02838718 737#menu-evts {
738 font-size: 85%;
739}
740
bac1e60a 741.ac_results {
92a1bac4 742 color: black;
bac1e60a 743}
744
3a19ba1d 745/* vim: set et ts=4 sts=4 sw=4: */