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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-01-12 11:27:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:191
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
    The header section is condensed, tabs display properly, introduced colour,
    everything goes all the way to the edge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * License version 2 or later.
6
6
 */
7
7
 
8
 
body {
 
8
/** Generic styling **/
 
9
 
 
10
html, body {
 
11
    margin: 0;
 
12
    padding: 0;
9
13
    background-color: white;
10
14
    color: black;
11
15
    font-family: sans;
 
16
    font-size: 0.95em;
12
17
}
13
18
 
14
19
a:link, a:visited {
21
26
h1 {
22
27
    text-align: center;
23
28
    font-size: 1.3em;
 
29
    margin-top: 0.67em;
 
30
    margin-bottom: 0.67em;
 
31
}
 
32
 
 
33
.error {
 
34
    color: #a00;
 
35
}
 
36
 
 
37
/** Special styles for header section **/
 
38
 
 
39
#ivleheader {
 
40
    background-color: #fea;
 
41
    /* Pad left and right. Pad 1px top to extend colour. */
 
42
    padding: 1px 1em 0 1em;
 
43
    border-bottom: 1px solid black;
 
44
}
 
45
/* Note: You can override this in app-specific CSS if you want to
 
46
 * push the body all the way to the edge. */
 
47
#ivlebody {
 
48
    padding: 1em;
24
49
}
25
50
 
26
51
p.userhello {
27
52
    font-size: .8em;
28
 
    text-align: right;
 
53
    position: absolute;
 
54
    top: 0;
 
55
    right: 1em;
 
56
}
 
57
p.userhello .username {
29
58
    font-weight: bold;
30
59
}
31
60
 
32
61
ul.apptabs {
33
62
    text-align: right;
 
63
    margin-bottom: 0;
34
64
}
35
65
ul.apptabs li {
36
66
    display: inline;
37
67
    padding: 3px;
38
68
    border: 1px solid black;
 
69
    background-color: #fc6;
 
70
    padding: 0 3px;
 
71
}
 
72
/* Currently active app tab */
 
73
ul.apptabs li.thisapp {
 
74
    background-color: white;
 
75
    border-bottom: 1px solid white;
39
76
}
40
77
 
41
 
.error {
42
 
    color: red;
 
78
ul.apptabs a {
 
79
    text-decoration: none;
43
80
}