1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/* Demo/example CSS - not needed for general use */
body {
background:#000;
font:normal 75% "helvetica neue",helvetica,verdana,arial,tahoma,"times new roman","sans serif";
color:#fff;
margin:0px;
padding:0px;
}
#background {
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
background:transparent url(http://farm1.static.flickr.com/45/191496680_97cdc5351b_b.jpg) no-repeat 50% 50%;
}
#site {
position:relative;
z-index:2;
background:rgba(0,0,0,0.5);
padding:1em;
}
#site h1 {
margin-top:0px;
}
#site p {
margin:0.5em 0px 0.5em 0px;
}
#site p:last-child {
margin:0px;
}
.clear {
float:none;
clear:both;
font-size:1px;
line-height:1px;
height:1px;
overflow:hidden;
}
#mpc {
position:absolute;
left:50%;
top:50%;
margin-left:-19em;
margin-top:-19em;
width:38em;
_width:37.3em;
border:3px solid #666;
border:3px solid rgba(255,255,255,0.25);
-moz-border-radius:12px;
-webkit-border-radius:12px;
border-radius:12px;
z-index:2;
}
#mpc #wrapper {
position:relative;
background:#333;
background:rgba(0,0,0,0.5);
padding:0.5em;
-moz-border-radius:12px;
-webkit-border-radius:12px;
border-radius:12px;
}
#mpc ul {
margin:0px;
padding:0px;
margin-left:2px;
*margin-left:1em;
_margin-left:2px;
padding:2px 0px 2px 0px;
}
#mpc ul li {
position:relative;
float:left;
display:inline;
width:7em;
height:7em;
margin:0.5em;
background:#999;
border:1px solid rgba(0,0,0,0.75);
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
font:normal 1em/1em "helvetica",verdana,arial,system;
padding:0.5em;
cursor:pointer;
cursor:hand;
color:#eee;
text-transform:uppercase;
font-weight:bold;
}
#mpc ul li span {
text-transform:none;
font-weight:normal;
color:#ccc;
}
#mpc ul li.active {
background:#666;
}
#mpc ul li div {
/* progress indicator */
position:absolute;
left:0px;
bottom:1em;
font-size:1em;
line-height:1em;
height:1em;
margin:0px 0px 0px 1em;
width:6em;
background:#888 url(../image/progress.png) no-repeat -256px 0px;
background-repeat:no-repeat;
border:1px solid #666;
visibility:hidden;
}
#mpc ul li.active div,
#mpc ul li.loading div {
visibility:visible;
}
#soundmanager-debug {
position:absolute;
right:20px;
bottom:20px;
height:12em;
width:50em;
overflow:auto;
margin-left:1em;
}
#soundmanager-debug div {
font-size:11px;
font-family: "lucida console",system,terminal,verdana,arial; /* IE doesn't seem to obey short-hand font family here? */
padding:0px 1em 0.5em 0px;
}
#mpc-debug,
.note {
color:#999;
}
#mpc-debug a,
.note a {
color:#6699cc;
text-decoration:none;
}
#isHTML5 {
display:none;
}
|