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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* IVLE - Informatics Virtual Learning Environment
* Copyright (C) 2007-2008 The University of Melbourne
* Common Style Sheet
* This file is redistributable under the terms of the GNU General Public
* License version 2 or later.
*/
/** Generic styling **/
html, body {
margin: 0;
padding: 0;
background-color: white;
color: black;
font-family: sans-serif;
font-size: 0.95em;
}
a:link, a:visited {
color: navy;
}
a:hover, a:active, a:focus {
color: blue;
}
.error {
color: #a00;
}
/** Special styles for header section **/
#ivleheader {
background-color: #fea;
/* Pad left and right. */
padding: 0 1em;
border-bottom: 1px solid black;
min-height: 4.3em;
}
/* Special "IVLE" and "Informatics Virtual Learning Environment" titles */
#ivleheader h1 {
position: absolute;
text-align: left;
font-size: 3.8em;
font-style: italic;
color: #ffc;
margin: 0;
padding: 0;
}
#ivleheader h2 {
position: absolute;
text-align: left;
font-size: 1.3em;
margin-top: 1em;
margin-bottom: 1em;
padding: 0;
}
/* Note: You can override this in app-specific CSS if you want to
* push the body all the way to the edge. */
#ivlebody {
padding: 1em;
}
p.userhello {
font-size: .8em;
top: 0;
text-align: right;
padding: 11px 0;
margin: 0;
}
p.userhello .username {
font-weight: bold;
}
ul#apptabs {
text-align: right;
margin-bottom: 0;
}
ul#apptabs li {
display: inline;
padding: 3px;
border: 1px solid black;
background-color: #fc6;
padding: 0 3px;
}
ul#apptabs li:hover {
background-color: #fd8;
}
/* Currently active app tab */
ul#apptabs li.thisapp {
background-color: white;
border-bottom: 1px solid white;
}
ul#apptabs a {
color: navy; /* Text colour not to change */
text-decoration: none;
}
|