Show the post subject in the 'message'-tab
[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
6f9b2fd4 52/****
53 * Bicolor table
54 */
55
41cf00eb 56table.bicol {
57 border-collapse: collapse;
58 border: 1px solid #a2c2e1;
59 width: 100%;
60}
61
62table.bicol tr.impair { }
63table.bicol tr.pair { color: inherit; background: #eee; }
64
65table.bicol th {
66 color: #369;
67 background: #d6e1ec;
68 padding: 0px 4px;
69}
70
71table.bicol td { padding: 0px 4px; }
72
6f9b2fd4 73/****
74 * Tabs
75 */
76
77table.cadre_a_onglet {
8003ba55 78 width: 100%;
79 border-width: 0;
80 padding : 0;
81 margin: 0;
82}
83
84td.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;
6f9b2fd4 95 margin-left: 3px;
8003ba55 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;
6f9b2fd4 109 height: 3.5ex;
8003ba55 110 text-align: center;
6f9b2fd4 111 font-size: 80%;
112 vertical-align: middle;
8003ba55 113}
114
33683e10 115#onglet li:hover { background : #d6e1ec; }
8003ba55 116
117#onglet li.actif {
6f9b2fd4 118 font-weight: bold;
8003ba55 119 background-color: #fff;
6f9b2fd4 120 border-bottom-color : #fff;
8003ba55 121}
122
123#onglet li a {
8003ba55 124 font-weight : normal;
125 text-decoration : none;
e0c73f09 126 display: block;
127 background: inherit;
128 width: 100%;
129 height: 100%;
8003ba55 130}
131
8003ba55 132#onglet li img { margin-right : 2px; }