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
|
/* 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.
*/
body {
background-color: white;
color: black;
font-family: sans;
}
a:link, a:visited {
color: navy;
}
a:hover, a:active, a:focus {
color: blue;
}
h1 {
text-align: center;
font-size: 1.3em;
}
p.userhello {
font-size: .8em;
text-align: right;
font-weight: bold;
}
ul.apptabs {
text-align: right;
}
ul.apptabs li {
display: inline;
padding: 3px;
border: 1px solid black;
}
.error {
color: red;
}
|