~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-11 07:39:40 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:186
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
In particular, the main header has been moved around a bit, with the "hello"
message and tabs moved to the right, and the tabs converted from a bullet list
to actual tabs.

dispatch: html, login: Minor changes to HTML layout.
ivle.css: Wrote a few styles to change the appearance of the whole program.
browser.css: A few styles were removed from here and brought into the main css
file. Minor changes to be compatible with ivle.css.

browser: Removed all the sample content (which in actuality will be generated
by JavaScript).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 */
7
7
 
8
8
body {
9
 
    font-family: sans-serif;
 
9
    background-color: white;
 
10
    color: black;
 
11
    font-family: sans;
 
12
}
 
13
 
 
14
a:link, a:visited {
 
15
    color: navy;
 
16
}
 
17
a:hover, a:active, a:focus {
 
18
    color: blue;
 
19
}
 
20
 
 
21
h1 {
 
22
    text-align: center;
 
23
    font-size: 1.3em;
 
24
}
 
25
 
 
26
p.userhello {
 
27
    font-size: .8em;
 
28
    text-align: right;
 
29
    font-weight: bold;
 
30
}
 
31
 
 
32
ul.apptabs {
 
33
    text-align: right;
 
34
}
 
35
ul.apptabs li {
 
36
    display: inline;
 
37
    padding: 3px;
 
38
    border: 1px solid black;
 
39
}
 
40
 
 
41
.error {
 
42
    color: red;
10
43
}