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

169 by mattgiuca
Added global common css file (media/common/ivle.css).
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
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
8
/** Generic styling **/
9
10
html, body {
11
    margin: 0;
12
    padding: 0;
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
13
    background-color: white;
14
    color: black;
228 by mattgiuca
common/ivle.css: changed font family from "sans" to "sans-serif" (this is
15
    font-family: sans-serif;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
16
    font-size: 0.95em;
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
17
}
18
19
a:link, a:visited {
20
    color: navy;
21
}
22
a:hover, a:active, a:focus {
23
    color: blue;
24
}
25
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
26
.error {
27
    color: #a00;
28
}
29
30
/** Special styles for header section **/
31
32
#ivleheader {
33
    background-color: #fea;
198 by mattgiuca
ivle.css: Fixed header layout so it has a minimum height (in the non-tabs
34
    /* Pad left and right. */
35
    padding: 0 1em;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
36
    border-bottom: 1px solid black;
198 by mattgiuca
ivle.css: Fixed header layout so it has a minimum height (in the non-tabs
37
    min-height: 4.3em;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
38
}
197 by mattgiuca
dispatch.html, ivle.css: Main IVLE header is now an h1/h2 pair, styled to the
39
40
/* Special "IVLE" and "Informatics Virtual Learning Environment" titles */
41
#ivleheader h1 {
42
    position: absolute;
43
    text-align: left;
198 by mattgiuca
ivle.css: Fixed header layout so it has a minimum height (in the non-tabs
44
    font-size: 3.8em;
197 by mattgiuca
dispatch.html, ivle.css: Main IVLE header is now an h1/h2 pair, styled to the
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
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
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;
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
63
}
64
65
p.userhello {
66
    font-size: .8em;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
67
    top: 0;
197 by mattgiuca
dispatch.html, ivle.css: Main IVLE header is now an h1/h2 pair, styled to the
68
    text-align: right;
198 by mattgiuca
ivle.css: Fixed header layout so it has a minimum height (in the non-tabs
69
    padding: 11px 0;
70
    margin: 0;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
71
}
72
p.userhello .username {
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
73
    font-weight: bold;
74
}
75
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
76
ul#apptabs {
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
77
    text-align: right;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
78
    margin-bottom: 0;
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
79
}
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
80
ul#apptabs li {
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
81
    display: inline;
82
    padding: 3px;
83
    border: 1px solid black;
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
84
    background-color: #fc6;
85
    padding: 0 3px;
86
}
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
87
ul#apptabs li:hover {
206 by mattgiuca
ivle.css: (minor) App tabs now the background colour lights up when hovering
88
    background-color: #fd8;
89
}
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
90
/* Currently active app tab */
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
91
ul#apptabs li.thisapp {
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
92
    background-color: white;
93
    border-bottom: 1px solid white;
186 by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
94
}
95
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
96
ul#apptabs a {
206 by mattgiuca
ivle.css: (minor) App tabs now the background colour lights up when hovering
97
    color: navy;    /* Text colour not to change */
191 by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website.
98
    text-decoration: none;
169 by mattgiuca
Added global common css file (media/common/ivle.css).
99
}