~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-14 01:13:50 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:217
Console: Python code generates a minimal document with a DIV and links to
    JavaScript.
    Added console.js. This spawns the server (calling consoleservice) and sets
    up the iframe. Console now working.
Added md5.js to media/common.

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
 
 
23
.padding {
 
24
    padding: 1em;
 
25
}
 
26
 
36
27
/* OVERALL LAYOUT */
37
28
 
38
 
body {
39
 
    margin: 0;
40
 
    padding: 0;
 
29
/* Override common #ivlebody */
 
30
#ivlebody {
 
31
    padding: 0 ! important;
41
32
}
42
33
 
43
34
#middle, #middle tbody {
72
63
    text-align: left;
73
64
}
74
65
 
 
66
td.thincol {
 
67
    width: 24px;
 
68
}
 
69
 
75
70
#filetablediv {
76
71
    overflow: auto;
77
72
}
115
110
    background-color: #aaa;
116
111
    cursor: pointer;
117
112
}
118
 
tr.row1:hover, tr.row2:hover {
119
 
    background-color: #eee;
120
 
}
121
113
/* And if they are selected (blue shades) */
122
114
tr.row1sel {
123
115
    background-color: #88e;
127
119
    background-color: #66c;
128
120
    cursor: pointer;
129
121
}
130
 
tr.row1sel:hover, tr.row2sel:hover {
131
 
    background-color: #eee;
132
 
}
133
122
 
134
123
#filetable table {
135
124
    border-collapse: collapse;
159
148
    text-align: center;
160
149
}
161
150
 
162
 
#sidepanel p, h1, h2 {
 
151
#sidepanel p, #sidepanel h2, #sidepanel h3 {
163
152
    margin: 0;
164
153
    padding: 0;
165
154
}
166
155
 
167
 
#sidepanel h2 {
168
 
    margin-top: 8px;
 
156
#sidepanel h3 {
 
157
    margin-top: 1em;
169
158
}
170
159
 
171
160
#sidepanel a {
178
167
    background-color: #aaa;
179
168
    border-top: 1px solid #888;
180
169
    font-size: 0.8em;
 
170
    padding: 2px;
 
171
}
 
172
 
 
173
/* TEXT EDITOR */
 
174
 
 
175
#editbox {
 
176
    width: 100%;
 
177
    height: 100%;
181
178
}