blob: ddddd1928e7d9c84868056c2b72eb589a9e11c2a [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001/*
2 Author:
3 Andres Blanc <andresblanc@gmail.com>
4 DaveMDS Andreoli <dave@gurumeditation.it>
5 Andreas Volz <andreas.volz@tux-style.com>
6
7 Supported Browsers:
8 ie7, opera9, konqueror4 and firefox3
9
10 Please use a different file for ie6, ie5, etc. hacks.
11*/
12
13
14/* Necessary to place the footer at the bottom of the page */
15html, body {
16 height: 100%;
17 margin: 0px;
18 padding: 0px;
19}
20
21#container {
22 min-height: 100%;
23 height: auto !important;
24 height: 100%;
25 margin: 0 auto -53px;
26}
27
28#footer, #push {
29 height: 53px;
30}
31
32
33* html #container {
34 height: 100%;
35}
36
37/* Prevent floating elements overflowing containers */
38.clear {
39 clear: both;
40 width: 0px;
41 height: 0px;
42}
43
44/* Flexible & centered layout from 750 to 960 pixels */
45.layout {
46 max-width: 960px;
47 min-width: 760px;
48 margin-left: auto;
49 margin-right: auto;
50}
51
52body {
53 /*font-family: Lucida Grande, Helvetica, sans-serif;*/
54 font-family: "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif
55}
56
57/* Prevent design overflowing the viewport in small resolutions */
58#container {
59 padding-right: 17px;
60 padding-left: 17px;
61 background-image: url(head_bg.png);
62 background-repeat: repeat-x;
63}
64
65/****************************/
66/* Top main menu */
67/****************************/
68#header_logo {
69 background-image : url(logo.png);
70 width : 130px;
71}
72
73#header_logo a {
74 position : absolute;
75 border : 0px;
76 background-color : transparent;
77 top : 0px;
78 width : 60px;
79 height : 60px;
80}
81
82#header_menu {
83 background-image : url(header_menu_background.png);
84 font : normal 10pt verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
85 text-align : right;
86}
87
88#header_last {
89 background-image : url(header_menu_background_last.png);
90 width : 17px;
91}
92
93td.nav_passive {
94 background : url(header_menu_unselected_background.png) 0 0 no-repeat;
95 height : 63px;
96 font-family : "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif;
97 font-size : 11px;
98 padding : 20px 10px 20px 10px;
99 vertical-align : middle;
100}
101
102td.nav_active {
103 background : url(header_menu_current_background.png) 0 0 no-repeat;
104 height : 63px;
105 color : #646464;
106 font-family : "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif;
107 font-size : 11px;
108 font-weight : bold;
109 padding : 20px 10px 20px 10px;
110 vertical-align : middle;
111}
112
113#header_menu a {
114 display : block;
115 text-decoration : none;
116 cursor : pointer;
117 color : #616161;
118}
119
120
121
122#header {
123 width: 100%;
124 height: 102px;
125}
126
127#header h1 {
128 width: 63px;
129 height: 63px;
130 position: absolute;
131 margin: 0px;
132}
133
134#header h1 span {
135 display: none;
136}
137
138#header h2 {
139 display: none;
140}
141
142/* .menu-container is used to set properties common to .menu and .submenu */
143#header .menu-container {
144}
145
146#header .menu-container ul {
147 list-style-type: none;
148 list-style-position: inside;
149 margin: 0;
150}
151
152#header .menu-container li {
153 display: block;
154 float: right;
155}
156
157#header .menu {
158 height: 63px;
159 display: block;
160 background-image: url(menu_bg.png);
161 background-repeat: repeat-x;
162}
163
164#header .menu ul {
165 height: 100%;
166 display: block;
167 background-image: url(menu_bg_last.png);
168 background-repeat: no-repeat;
169 background-position: top right;
170 padding-right: 17px;
171}
172
173#header .menu li {
174 height: 100%;
175 text-align: center;
176 background-image: url(menu_bg_unsel.png);
177 background-repeat: no-repeat;
178}
179
180#header .menu a {
181 height: 100%;
182 display: block;
183 color: #cdcdcd;
184 text-decoration: none;
185 font-size: 10pt;
186 line-height: 59px;
187 text-align: center;
188 padding: 0px 15px 0px 15px;
189}
190
191#header .menu li:hover {
192 background-image: url(menu_bg_hover.png);
193 background-repeat: no-repeat;
194}
195
196#header .menu li:hover a {
197 color: #FFFFFF;
198}
199
200#header .menu li.current {
201 background-image: url(menu_bg_current.png);
202 background-repeat: no-repeat;
203}
204
205#header .menu li.current a {
206 color: #646464;
207}
208
209
210/* Hide all the submenus but the current */
211#header .submenu ul {
212 display: none;
213}
214
215#header .submenu .current {
216 display: block;
217}
218
219#header .submenu {
220 font: bold 10px verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
221 margin-top: 10px;
222}
223
224#header .submenu a {
225 color: #888888;
226 text-decoration: none;
227 font-size: 0.9em;
228 line-height: 15px;
229 padding:0px 5px 0px 5px;
230}
231
232#header .submenu a:hover {
233 color: #444444;
234}
235
236#header .submenu li {
237 border-left: 1px solid #DDDDDD;
238}
239
240#header .submenu li:last-child {
241 border-left: 0;
242}
243
244#header .doxytitle {
245 position: absolute;
246 font-size: 1.8em;
247 font-weight: bold;
248 color: #444444;
249 line-height: 35px;
250}
251
252#header small {
253 font-size: 0.4em;
254}
255
256#footer {
257 background-image: url(foot_bg.png);
258 width: 100%;
259}
260
261#footer table {
262 width: 100%;
263 text-align: center;
264 white-space: nowrap;
265 padding: 5px 30px 5px 30px;
266 font-size: 0.8em;
267 font-family: "Bitstream Vera","Vera","Trebuchet MS",Trebuchet,Tahoma,sans-serif;
268 color: #888888;
269}
270
271#footer td.copyright {
272 width: 100%;
273}
274