-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleftSidebar.css
More file actions
50 lines (44 loc) · 810 Bytes
/
leftSidebar.css
File metadata and controls
50 lines (44 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* leftSidebar.css
*
* Copyright (c) 2003-2011 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* With contributions from:
* - 2014 Instituto Nacional de Investigacion y Tecnologia Agraria y Alimentaria
*
* Site-wide shared elements for pages including a left-hand sidebar.
*
* $Id$
*/
/**
* Common HTML elements
*/
#headerTitle {
width: 100%;
}
#body {
vertical-align: top;
height: 100%;
}
#leftSidebar {
float: left;
width: 14%;
padding: 1em 0em 1em 0em;
font-size: 0.65em;
height: 100%;
margin-left: 10%;
margin-right: 2%;
display: inline;
overflow: hidden;
}
#main {
float: right;
width: 63%;
margin-right: 10%;
overflow: hidden;
}
// Set main on non-IE browsers to have a 10% margin
*html #main {
margin-right: 5%;
}