author | Dan |
Fri, 12 Jun 2009 13:50:13 -0400 | |
changeset 78 | 08f8a72b1f7b |
parent 77 | e5f1f45ea7e2 |
permissions | -rw-r--r-- |
4 | 1 |
/** |
2 |
* Based upon the AmaroK WebControl interface by: |
|
3 |
* Jonas Christian Drewsen ( kde at xspect dot dk ) |
|
4 |
* André Kelpe ( fs111 at web dot de ) |
|
5 |
* Peter C. Ndikuwera ( pndiku at gmail dot com ) |
|
6 |
*/ |
|
7 |
||
8 |
body { |
|
9 |
font-family: sans-serif; |
|
10 |
background-color: #9cb2cd; |
|
11 |
color: #ffffff; |
|
12 |
margin: 0; |
|
13 |
padding: 0; |
|
14 |
width: 320px; |
|
72
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
15 |
font-size: 80%; |
4 | 16 |
} |
17 |
||
18 |
div.tblholder { |
|
19 |
padding: 1px; |
|
20 |
background-color: #ffffff; |
|
21 |
border: 1px solid #000000; |
|
22 |
} |
|
23 |
||
24 |
div.tblholder table { |
|
25 |
background-color: #596082; |
|
26 |
} |
|
27 |
||
28 |
tr th { |
|
29 |
background-color: #697092; |
|
30 |
} |
|
31 |
||
77
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
32 |
tr.row1 td, td.row1 { |
4 | 33 |
background-color: #394062; |
34 |
} |
|
35 |
||
77
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
36 |
tr.row2 td, td.row2 { |
4 | 37 |
background-color: #202050; |
38 |
} |
|
39 |
||
77
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
40 |
tr.row3 td, td.row3 { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
41 |
background-color: #293052; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
42 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
43 |
|
4 | 44 |
tr.current td { |
45 |
background-color: #495072; |
|
46 |
color: #ffff00; |
|
47 |
} |
|
48 |
||
49 |
div#playbar { |
|
50 |
width: 320px; |
|
51 |
padding: 0; |
|
52 |
margin: 0 0 10px 0; |
|
53 |
background-image: url(images/playbar.gif); |
|
54 |
background-repeat: repeat-x; |
|
55 |
background-color: #383f61; |
|
56 |
border-bottom: 1px solid #000000; |
|
57 |
text-align: center; |
|
58 |
position: absolute; |
|
59 |
top: 0px; |
|
60 |
left: 0px; |
|
61 |
} |
|
62 |
||
63 |
div.playbar-inner { |
|
64 |
padding: 5px; |
|
65 |
line-height: 22px; |
|
66 |
} |
|
67 |
||
68 |
a img { |
|
69 |
border-width: 0; |
|
70 |
} |
|
71 |
||
72 |
div#playlist { |
|
10
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
73 |
margin: 174px 8px 0 8px; |
72
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
74 |
/* |
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
75 |
height: 200px; |
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
76 |
clip: rect(0px,auto,auto,0px); |
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
77 |
overflow: scroll; |
b8730fcd64a9
Some UI changes I don't feel like auditing over and over until I understand (commiting some very old changes here)
Dan
parents:
19
diff
changeset
|
78 |
*/ |
4 | 79 |
} |
80 |
||
81 |
a.tracklink { |
|
82 |
text-decoration: none; |
|
83 |
color: white; |
|
84 |
} |
|
85 |
||
5
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
4
diff
changeset
|
86 |
div.track_inner { |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
4
diff
changeset
|
87 |
display: none; |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
4
diff
changeset
|
88 |
} |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
4
diff
changeset
|
89 |
|
4 | 90 |
div#playlist tr.current a.tracklink { |
91 |
color: #ffff00; |
|
92 |
} |
|
93 |
||
94 |
span#playmeter, span#volume_wrap { |
|
95 |
position: relative; |
|
96 |
top: -7px; |
|
97 |
} |
|
98 |
||
99 |
a.volume_button { |
|
100 |
padding-right: 18px; |
|
101 |
margin-right: 1px; |
|
102 |
background-color: #33395d; |
|
103 |
border: 1px solid #909090; |
|
104 |
text-decoration: none; |
|
105 |
} |
|
106 |
||
107 |
a.volume_button_active { |
|
108 |
background-color: #9090c2; |
|
109 |
border-color: #d0d0d0; |
|
110 |
} |
|
111 |
||
112 |
div#footer { |
|
113 |
background-image: url(images/playbar.gif); |
|
114 |
background-repeat: repeat-x; |
|
115 |
text-align: center; |
|
116 |
margin-top: 10px; |
|
117 |
padding: 5px; |
|
118 |
} |
|
10
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
119 |
|
77
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
120 |
div#offlinemode { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
121 |
position: absolute; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
122 |
top: 4px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
123 |
right: 4px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
124 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
125 |
|
10
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
126 |
/* Position slider (playhead) */ |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
127 |
|
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
128 |
div#playhead { |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
129 |
background-image: url(images/position-empty.png); |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
130 |
width: 250px; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
131 |
background-repeat: no-repeat; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
132 |
background-position: center center; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
133 |
margin: 0 auto 10px auto; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
134 |
} |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
135 |
|
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
136 |
div#playhead-filler { |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
137 |
background-image: url(images/position-full.png); |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
138 |
width: 150px; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
139 |
background-repeat: no-repeat; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
140 |
background-position: left center; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
141 |
} |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
142 |
|
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
143 |
div#playhead-button { |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
144 |
background-image: url(images/playhead.png); |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
145 |
width: 16px; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
146 |
height: 16px; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
147 |
font-size: 1px; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
148 |
position: absolute; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
149 |
background-repeat: no-repeat; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
150 |
background-position: center center; |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
151 |
} |
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
5
diff
changeset
|
152 |
|
11
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
153 |
/* The list of colors that will be cycled through as playback takes place */ |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
154 |
tr.pulsar0 td { background-color: #47507a; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
155 |
tr.pulsar1 td { background-color: #424a73; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
156 |
tr.pulsar2 td { background-color: #3c436c; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
157 |
tr.pulsar3 td { background-color: #383d64; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
158 |
tr.pulsar4 td { background-color: #31365d; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
159 |
tr.pulsar5 td { background-color: #2c3155; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
160 |
tr.pulsar6 td { background-color: #272a4e; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
161 |
tr.pulsar7 td { background-color: #222447; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
162 |
tr.pulsar8 td { background-color: #1c1d3f; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
163 |
tr.pulsar9 td { background-color: #171738; } |
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
164 |
|
19
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
165 |
div.poweredby { |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
166 |
font-size: smaller; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
167 |
text-align: center; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
168 |
margin: 10px 0; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
169 |
} |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
170 |
|
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
171 |
div.poweredby a { |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
172 |
color: #57608a; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
173 |
} |
77
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
174 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
175 |
p.success, p.error { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
176 |
text-align: center; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
177 |
font-weight: bold; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
178 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
179 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
180 |
p.success { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
181 |
color: #23a600; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
182 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
183 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
184 |
p.error { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
185 |
color: #c71700; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
186 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
187 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
188 |
a.backlink { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
189 |
display: block; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
190 |
max-width: 135px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
191 |
color: #2c425d; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
192 |
background-color: #bcd2ed; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
193 |
padding: 5px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
194 |
margin: 10px 0 5px 0; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
195 |
text-decoration: none; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
196 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
197 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
198 |
a.backlink:active { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
199 |
color: #4c627d; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
200 |
background-color: #dcf2ff; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
201 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
202 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
203 |
a.backlink.inline { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
204 |
max-width: none; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
205 |
background-color: #7c92ad; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
206 |
margin: 5px 10px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
207 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
208 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
209 |
a.backlink.inline:hover { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
210 |
background-color: #9cb2cd; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
211 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
212 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
213 |
span.clearer { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
214 |
display: block; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
215 |
clear: both; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
216 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
217 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
218 |
div.greylogo { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
219 |
width: 120px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
220 |
height: 33px; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
221 |
background-image: url(images/greylogo.png); |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
222 |
background-repeat: no-repeat; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
223 |
float: right; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
224 |
margin: 5px 0; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
225 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
226 |
|
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
227 |
div.clearer { |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
228 |
clear: both; |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
229 |
} |
e5f1f45ea7e2
Added ability to configure from iPhone; changed up iPhone interface a bit
Dan
parents:
72
diff
changeset
|
230 |