author | Dan |
Tue, 26 May 2009 15:26:22 -0400 | |
changeset 71 | 8663af0e27c7 |
parent 19 | 75dd71fe35b2 |
child 72 | b8730fcd64a9 |
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; |
|
15 |
} |
|
16 |
||
17 |
div.tblholder { |
|
18 |
padding: 1px; |
|
19 |
background-color: #ffffff; |
|
20 |
border: 1px solid #000000; |
|
21 |
} |
|
22 |
||
23 |
div.tblholder table { |
|
24 |
background-color: #596082; |
|
25 |
} |
|
26 |
||
27 |
tr th { |
|
28 |
background-color: #697092; |
|
29 |
} |
|
30 |
||
31 |
tr.row1 td { |
|
32 |
background-color: #394062; |
|
33 |
} |
|
34 |
||
35 |
tr.row2 td { |
|
36 |
background-color: #202050; |
|
37 |
} |
|
38 |
||
39 |
tr.current td { |
|
40 |
background-color: #495072; |
|
41 |
color: #ffff00; |
|
42 |
} |
|
43 |
||
44 |
div#playbar { |
|
45 |
width: 320px; |
|
46 |
padding: 0; |
|
47 |
margin: 0 0 10px 0; |
|
48 |
background-image: url(images/playbar.gif); |
|
49 |
background-repeat: repeat-x; |
|
50 |
background-color: #383f61; |
|
51 |
border-bottom: 1px solid #000000; |
|
52 |
text-align: center; |
|
53 |
position: absolute; |
|
54 |
top: 0px; |
|
55 |
left: 0px; |
|
56 |
} |
|
57 |
||
58 |
div.playbar-inner { |
|
59 |
padding: 5px; |
|
60 |
line-height: 22px; |
|
61 |
} |
|
62 |
||
63 |
a img { |
|
64 |
border-width: 0; |
|
65 |
} |
|
66 |
||
67 |
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
|
68 |
margin: 174px 8px 0 8px; |
4 | 69 |
} |
70 |
||
71 |
a.tracklink { |
|
72 |
text-decoration: none; |
|
73 |
color: white; |
|
74 |
} |
|
75 |
||
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
|
76 |
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
|
77 |
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
|
78 |
} |
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
|
79 |
|
4 | 80 |
div#playlist tr.current a.tracklink { |
81 |
color: #ffff00; |
|
82 |
} |
|
83 |
||
84 |
span#playmeter, span#volume_wrap { |
|
85 |
position: relative; |
|
86 |
top: -7px; |
|
87 |
} |
|
88 |
||
89 |
a.volume_button { |
|
90 |
padding-right: 18px; |
|
91 |
margin-right: 1px; |
|
92 |
background-color: #33395d; |
|
93 |
border: 1px solid #909090; |
|
94 |
text-decoration: none; |
|
95 |
} |
|
96 |
||
97 |
a.volume_button_active { |
|
98 |
background-color: #9090c2; |
|
99 |
border-color: #d0d0d0; |
|
100 |
} |
|
101 |
||
102 |
div#footer { |
|
103 |
background-image: url(images/playbar.gif); |
|
104 |
background-repeat: repeat-x; |
|
105 |
text-align: center; |
|
106 |
margin-top: 10px; |
|
107 |
padding: 5px; |
|
108 |
} |
|
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
|
109 |
|
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
|
110 |
/* 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
|
111 |
|
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
|
112 |
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
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
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
|
117 |
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
|
118 |
} |
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 |
|
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
|
120 |
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
|
121 |
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
|
122 |
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
|
123 |
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
|
124 |
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
|
125 |
} |
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 |
|
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 |
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
|
128 |
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
|
129 |
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
|
130 |
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
|
131 |
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
|
132 |
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
|
133 |
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
|
134 |
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
|
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 |
|
11
0faea3a6c881
Fixed some position slider issues; added a pulsing effect to the current track (fun!)
Dan
parents:
10
diff
changeset
|
137 |
/* 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
|
138 |
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
|
139 |
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
|
140 |
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
|
141 |
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
|
142 |
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
|
143 |
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
|
144 |
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
|
145 |
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
|
146 |
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
|
147 |
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
|
148 |
|
19
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
149 |
div.poweredby { |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
150 |
font-size: smaller; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
151 |
text-align: center; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
152 |
margin: 10px 0; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
153 |
} |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
154 |
|
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
155 |
div.poweredby a { |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
156 |
color: #57608a; |
75dd71fe35b2
Added the "powered by" link and rebranded as 0.1 alpha 1
Dan
parents:
11
diff
changeset
|
157 |
} |