~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-02-05 03:04:05 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:413
fileservice: Accidentally forgot to add __init__.py. (So last commit was an
    empty directory).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * License version 2 or later.
6
6
 */
7
7
 
 
8
/* GENERAL FORMATTING */
 
9
 
 
10
#ivlebody p, #ivlebody h2, #ivlebody h3 {
 
11
    padding: 0;
 
12
    margin: 0.7em 0;
 
13
}
 
14
#ivlebody p, #ivlebody h3 {
 
15
    font-size: 1em;
 
16
}
 
17
#ivlebody h2 {
 
18
    font-size: 1.1em;
 
19
}
 
20
 
 
21
.padding {
 
22
    padding: 1em;
 
23
}
 
24
 
 
25
/* TOP BAR */
 
26
 
 
27
#topbar {
 
28
    position: absolute;
 
29
    left: 0;
 
30
    right: 0;
 
31
    top: 0;
 
32
    /* height == h2.margin + h2.line-height
 
33
     *              + max(h2.margin, p.margin) + p.line-height + p.margin
 
34
     *        == 1.1*0.7em + 1.1*1.2em + 1.1*0.7em + 1.1em + 0.7em
 
35
     *        == 4.6em */
 
36
    height: 4.6em;
 
37
    padding: 0.5em;
 
38
    background-color: #aaf;
 
39
}
 
40
#topbar a {
 
41
    font-weight: bold;
 
42
}
 
43
 
 
44
/* Everything under the top bar */
 
45
 
 
46
#filesbody {
 
47
    position: absolute;
 
48
    left: 0;
 
49
    right: 0;
 
50
    /* top == #topbar.height + #topbar.padding * 2 */
 
51
    top: 5.6em;
 
52
    bottom: 0;
 
53
}
 
54