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

« back to all changes in this revision

Viewing changes to www/media/browser/browser.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:
7
7
 
8
8
/* GENERAL FORMATTING */
9
9
 
10
 
body {
11
 
    background-color: white;
12
 
    color: black;
13
 
    font-family: sans;
14
 
}
15
 
 
16
 
a:link, a:visited {
17
 
    color: navy;
18
 
}
19
 
a:hover, a:active, a:focus {
20
 
    color: blue;
21
 
}
22
 
 
23
 
p, h1, h2, h3 {
 
10
p, h2, h3 {
24
11
    padding: 0;
25
12
    margin: 0;
26
13
    margin-top: 11px;
27
14
    margin-bottom: 11px;
28
15
}
29
 
p, h2, h3 {
 
16
p, h3 {
30
17
    font-size: 1em;
31
18
}
32
 
h1 {
 
19
h2 {
33
20
    font-size: 1.1em;
34
21
}
35
22