More robust tab structure
[banana.git] / css / banana.css
CommitLineData
41cf00eb 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
21body {
22 font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
23 margin:2em 1%;
24 padding:0;
25}
26
27div.bloc { width: 800px; margin-left: auto; margin-right: auto; }
28
29div.foot {
30 border-top: 1px solid #a2c2e1;
31 padding-top: 1em;
32 margin-top: 1em;
33}
34
35a:link, a:visited { color: #f60; background: transparent; }
36a:active, a:hover { color: #369; background: transparent; }
ec39d93e 37a img { border: 0px; }
41cf00eb 38
39hr { border: none; border-top: 1px dotted #a2c2e1; }
40
41h1 {
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
52table.bicol {
53 border-collapse: collapse;
54 border: 1px solid #a2c2e1;
55 width: 100%;
56}
57
58table.bicol tr.impair { }
59table.bicol tr.pair { color: inherit; background: #eee; }
60
61table.bicol th {
62 color: #369;
63 background: #d6e1ec;
64 padding: 0px 4px;
65}
66
67table.bicol td { padding: 0px 4px; }
68
8003ba55 69table.cadre_a_onglet{
70 width: 100%;
71 border-width: 0;
72 padding : 0;
73 margin: 0;
74}
75
76td.conteneur_tab {
77 border-width : 1px 2px 2px 1px;
78 border-style : solid;
79 border-color : #a2c2e1;
80 padding : 4px 4px 4px 4px;
81}
82
83#onglet {
84 display : block;
85 margin : 0;
86 padding : 0;
87}
88
89#onglet li {
90 display : block;
91 float : left;
92 padding : 0.4ex;
93 margin : 0 0.3ex -1px 0;
94 background : #eee;
95 border-width : 1px 1px 0px 1px;
96 border-style : solid;
97 border-color : #a2c2e1;
98 border-bottom-color : #a2c2e1;
99 width: auto;
100 height: 5ex;
101 text-align: center;
102}
103
104#onglet li:hover { background : #fc3; }
105
106#onglet li.actif {
107 background-color: #fff;
108 border-bottom-color : #eceade;
109}
110
111#onglet li a {
112 font-size: 80%;
113 font-weight : normal;
114 text-decoration : none;
115}
116
117#onglet li a:hover { text-decoration: underline; }
118#onglet li img { margin-right : 2px; }