ecc1d461392d9fa73f4656a0ebde72b7d6025e4a
[banana.git] / css / banana.css
1 /***************************************************************************
2 * Copyright (C) 2003-2004 Polytechnique.org *
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 body {
22 font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
23 margin:2em 1%;
24 padding:0;
25 }
26
27 div.bloc { width: 800px; margin-left: auto; margin-right: auto; }
28
29 div.foot {
30 border-top: 1px solid #a2c2e1;
31 padding-top: 1em;
32 margin-top: 1em;
33 }
34
35 a:link, a:visited { color: #f60; background: transparent; }
36 a:active, a:hover { color: #369; background: transparent; }
37 a img { border: 0px; }
38
39 hr { border: none; border-top: 1px dotted #a2c2e1; }
40
41 h1 {
42 color: #369;
43 background: inherit;
44 font-size: 200%;
45 text-align: center;
46 margin: 0em;
47 border-bottom: 2px solid #369;
48 padding: 4px;
49 margin: 1em 0em;
50 }
51
52 /****
53 * Bicolor table
54 */
55
56 table.bicol {
57 border-collapse: collapse;
58 border: 1px solid #a2c2e1;
59 width: 100%;
60 }
61
62 table.bicol tr.impair { }
63 table.bicol tr.pair { color: inherit; background: #eee; }
64
65 table.bicol th {
66 color: #369;
67 background: #d6e1ec;
68 padding: 0px 4px;
69 }
70
71 table.bicol td { padding: 0px 4px; }
72
73 /****
74 * Tabs
75 */
76
77 table.cadre_a_onglet {
78 width: 100%;
79 border-width: 0;
80 padding : 0;
81 margin: 0;
82 }
83
84 td.conteneur_tab {
85 border-width : 1px 2px 2px 1px;
86 border-style : solid;
87 border-color : #a2c2e1;
88 padding : 4px 4px 4px 4px;
89 }
90
91 #onglet {
92 display : block;
93 margin : 0;
94 padding : 0;
95 margin-left: 3px;
96 }
97
98 #onglet li {
99 display : block;
100 float : left;
101 padding : 0.4ex;
102 margin : 0 0.3ex -1px 0;
103 background : #eee;
104 border-width : 1px 1px 0px 1px;
105 border-style : solid;
106 border-color : #a2c2e1;
107 border-bottom-color : #a2c2e1;
108 width: auto;
109 height: 3.5ex;
110 text-align: center;
111 font-size: 80%;
112 vertical-align: middle;
113 }
114
115 #onglet li:hover { background : #d6e1ec; }
116
117 #onglet li.actif {
118 font-weight: bold;
119 background-color: #fff;
120 border-bottom-color : #fff;
121 }
122
123 #onglet li a {
124 font-weight : normal;
125 text-decoration : none;
126 display: block;
127 background: inherit;
128 width: 100%;
129 height: 100%;
130 }
131
132 #onglet li img { margin-right : 2px; }