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; |
|
15 |
font-family: sans; |
|
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 |
||
26 |
h1 { |
|
27 |
text-align: center; |
|
28 |
font-size: 1.3em; |
|
191
by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website. |
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; |
|
186
by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML). |
49 |
}
|
50 |
||
51 |
p.userhello { |
|
52 |
font-size: .8em; |
|
191
by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website. |
53 |
position: absolute; |
54 |
top: 0; |
|
55 |
right: 1em; |
|
56 |
}
|
|
57 |
p.userhello .username { |
|
186
by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML). |
58 |
font-weight: bold; |
59 |
}
|
|
60 |
||
61 |
ul.apptabs { |
|
62 |
text-align: right; |
|
191
by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website. |
63 |
margin-bottom: 0; |
186
by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML). |
64 |
}
|
65 |
ul.apptabs li { |
|
66 |
display: inline; |
|
67 |
padding: 3px; |
|
68 |
border: 1px solid black; |
|
191
by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website. |
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; |
|
186
by mattgiuca
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML). |
76 |
}
|
77 |
||
191
by mattgiuca
dispatch.html, ivle.css, browser.css: Major restyling of the IVLE website. |
78 |
ul.apptabs a { |
79 |
text-decoration: none; |
|
169
by mattgiuca
Added global common css file (media/common/ivle.css). |
80 |
}
|