~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/common/ivle.css

  • Committer: drtomc
  • Date: 2007-12-11 03:26:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:25
A bit more work on the userdb stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* IVLE - Informatics Virtual Learning Environment
2
 
 * Copyright (C) 2007-2008 The University of Melbourne
3
 
 * Common Style Sheet
4
 
 * This file is redistributable under the terms of the GNU General Public
5
 
 * License version 2 or later.
6
 
 */
7
 
 
8
 
/** Generic styling **/
9
 
 
10
 
html, body {
11
 
    margin: 0;
12
 
    padding: 0;
13
 
    background-color: white;
14
 
    color: black;
15
 
    font-family: sans-serif;
16
 
    font-size: 0.95em;
17
 
}
18
 
 
19
 
a:link, a:visited {
20
 
    color: navy;
21
 
}
22
 
a:hover, a:active, a:focus {
23
 
    color: blue;
24
 
}
25
 
 
26
 
.error {
27
 
    color: #a00;
28
 
}
29
 
 
30
 
/** Special styles for header section **/
31
 
 
32
 
#ivleheader {
33
 
    background-color: #fea;
34
 
    /* Pad left and right. */
35
 
    padding: 0 1em;
36
 
    border-bottom: 1px solid black;
37
 
    min-height: 4.3em;
38
 
}
39
 
 
40
 
/* Special "IVLE" and "Informatics Virtual Learning Environment" titles */
41
 
#ivleheader h1 {
42
 
    position: absolute;
43
 
    text-align: left;
44
 
    font-size: 3.8em;
45
 
    font-style: italic;
46
 
    color: #ffc;
47
 
    margin: 0;
48
 
    padding: 0;
49
 
}
50
 
#ivleheader h2 {
51
 
    position: absolute;
52
 
    text-align: left;
53
 
    font-size: 1.3em;
54
 
    margin-top: 1em;
55
 
    margin-bottom: 1em;
56
 
    padding: 0;
57
 
}
58
 
 
59
 
/* Note: You can override this in app-specific CSS if you want to
60
 
 * push the body all the way to the edge. */
61
 
#ivlebody {
62
 
    padding: 1em;
63
 
}
64
 
 
65
 
p.userhello {
66
 
    font-size: .8em;
67
 
    top: 0;
68
 
    text-align: right;
69
 
    padding: 11px 0;
70
 
    margin: 0;
71
 
}
72
 
p.userhello .username {
73
 
    font-weight: bold;
74
 
}
75
 
 
76
 
ul#apptabs {
77
 
    text-align: right;
78
 
    margin-bottom: 0;
79
 
}
80
 
ul#apptabs li {
81
 
    display: inline;
82
 
    padding: 3px;
83
 
    border: 1px solid black;
84
 
    background-color: #fc6;
85
 
    padding: 0 3px;
86
 
}
87
 
ul#apptabs li:hover {
88
 
    background-color: #fd8;
89
 
}
90
 
/* Currently active app tab */
91
 
ul#apptabs li.thisapp {
92
 
    background-color: white;
93
 
    border-bottom: 1px solid white;
94
 
}
95
 
 
96
 
ul#apptabs a {
97
 
    color: navy;    /* Text colour not to change */
98
 
    text-decoration: none;
99
 
}