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
51
52
53
54
|
/* IVLE - Informatics Virtual Learning Environment
* Copyright (C) 2007-2008 The University of Melbourne
* Style Sheet for File Browser and Editor
* This file is redistributable under the terms of the GNU General Public
* License version 2 or later.
*/
/* GENERAL FORMATTING */
#ivlebody p, #ivlebody h2, #ivlebody h3 {
padding: 0;
margin: 0.7em 0;
}
#ivlebody p, #ivlebody h3 {
font-size: 1em;
}
#ivlebody h2 {
font-size: 1.1em;
}
.padding {
padding: 1em;
}
/* TOP BAR */
#topbar {
position: absolute;
left: 0;
right: 0;
top: 0;
/* height == h2.margin + h2.line-height
* + max(h2.margin, p.margin) + p.line-height + p.margin
* == 1.1*0.7em + 1.1*1.2em + 1.1*0.7em + 1.1em + 0.7em
* == 4.6em */
height: 4.6em;
padding: 0.5em;
background-color: #aaf;
}
#topbar a {
font-weight: bold;
}
/* Everything under the top bar */
#filesbody {
position: absolute;
left: 0;
right: 0;
/* top == #topbar.height + #topbar.padding * 2 */
top: 5.6em;
bottom: 0;
}
|