2011-06-20 20:42:21 +00:00
|
|
|
#player .now-playing {
|
|
|
|
height: 30px;
|
|
|
|
color: #FFF;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 30px;
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
2011-06-20 20:42:21 +00:00
|
|
|
#player .progress {
|
|
|
|
width: 330px;
|
|
|
|
height: 5px;
|
|
|
|
background-color: #333;
|
|
|
|
margin: 0 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#player .progress .loaded {
|
|
|
|
width: 0;
|
2011-06-14 21:29:36 +00:00
|
|
|
height: 5px;
|
2011-06-20 20:42:21 +00:00
|
|
|
background-color: #405050;
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
2011-06-20 20:42:21 +00:00
|
|
|
#player .progress .played {
|
2011-06-14 16:05:12 +00:00
|
|
|
width: 0;
|
2011-06-14 21:29:36 +00:00
|
|
|
height: 5px;
|
2011-06-20 20:42:21 +00:00
|
|
|
background-color: #09A;
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
2011-06-20 20:42:21 +00:00
|
|
|
#player .controls {
|
|
|
|
width: 290px;
|
|
|
|
margin: 20px 95px;
|
|
|
|
}
|
|
|
|
#player .controls > div {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#player .controls .prev {
|
|
|
|
background-image: url('/images/icns/prev.png');
|
|
|
|
}
|
|
|
|
#player .controls .play {
|
|
|
|
background-image: url('/images/icns/play.png');
|
|
|
|
}
|
|
|
|
#player .controls .pause {
|
|
|
|
background-image: url('/images/icns/pause.png');
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#player .controls .next {
|
|
|
|
background-image: url('/images/icns/next.png');
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
2011-06-15 01:42:50 +00:00
|
|
|
|
|
|
|
.playlist-tracks {
|
|
|
|
width: 343px;
|
|
|
|
}
|
2011-06-14 16:05:12 +00:00
|
|
|
.playlist-tracks li {
|
|
|
|
display: block;
|
2011-06-16 03:27:07 +00:00
|
|
|
height: 26px;
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
|
|
|
.playlist-tracks li .item {
|
2011-06-16 03:27:07 +00:00
|
|
|
position: relative;
|
2011-06-14 20:01:42 +00:00
|
|
|
overflow: hidden;
|
2011-06-16 03:27:07 +00:00
|
|
|
height: 26px;
|
2011-06-20 20:42:21 +00:00
|
|
|
color: #FFF;
|
2011-06-14 16:05:12 +00:00
|
|
|
}
|
2011-06-16 03:27:07 +00:00
|
|
|
.playlist-tracks li .item .title {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 5px;
|
|
|
|
z-index: 10;
|
|
|
|
width: 330px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.playlist-tracks li .item .duration {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 5px;
|
|
|
|
z-index: 30;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
2011-06-14 16:05:12 +00:00
|
|
|
.playlist-tracks li .item:hover {
|
2011-06-20 20:42:21 +00:00
|
|
|
background-color: #444;
|
2011-06-14 16:05:12 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
2011-06-20 20:42:21 +00:00
|
|
|
.playlist-tracks li:nth-child(odd) {
|
|
|
|
background-color: #2A2A2A;
|
2011-06-14 16:05:12 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
.playlist-tracks li.now .item {
|
2011-06-20 20:42:21 +00:00
|
|
|
color: #09A;
|
2011-06-14 16:05:12 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
.playlist-tracks li .item .duration {
|
|
|
|
display: block;
|
|
|
|
float: right;
|
2011-06-16 03:27:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Gradients */
|
|
|
|
.playlist-tracks li .item .fade {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 20;
|
|
|
|
width: 100px;
|
|
|
|
height: 26px;
|
2011-06-20 20:42:21 +00:00
|
|
|
background: -moz-linear-gradient(left, rgba(32,32,32,0) 0%, rgba(32,32,32,1) 50%, rgba(32,32,32,1) 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(32,32,32,0)), color-stop(50%,rgba(32,32,32,1)), color-stop(100%,rgba(32,32,32,1))); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(left, rgba(32,32,32,0) 0%,rgba(32,32,32,1) 50%,rgba(32,32,32,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(left, rgba(32,32,32,0) 0%,rgba(32,32,32,1) 50%,rgba(32,32,32,1) 100%); /* Opera11.10+ */
|
|
|
|
background: -ms-linear-gradient(left, rgba(32,32,32,0) 0%,rgba(32,32,32,1) 50%,rgba(32,32,32,1) 100%); /* IE10+ */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00202020', endColorstr='#202020',GradientType=1 ); /* IE6-9 */
|
|
|
|
background: linear-gradient(left, rgba(32,32,32,0) 0%,rgba(32,32,32,1) 50%,rgba(32,32,32,1) 100%); /* W3C */
|
2011-06-16 03:27:07 +00:00
|
|
|
}
|
|
|
|
|
2011-06-20 20:42:21 +00:00
|
|
|
.playlist-tracks li:nth-child(odd) .item .fade {
|
|
|
|
background: -moz-linear-gradient(left, rgba(42,42,42,0) 0%, rgba(42,42,42,1) 50%, rgba(42,42,42,1) 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(42,42,42,0)), color-stop(50%,rgba(42,42,42,1)), color-stop(100%,rgba(42,42,42,1))); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(left, rgba(42,42,42,0) 0%,rgba(42,42,42,1) 50%,rgba(42,42,42,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(left, rgba(42,42,42,0) 0%,rgba(42,42,42,1) 50%,rgba(42,42,42,1) 100%); /* Opera11.10+ */
|
|
|
|
background: -ms-linear-gradient(left, rgba(42,42,42,0) 0%,rgba(42,42,42,1) 50%,rgba(42,42,42,1) 100%); /* IE10+ */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002a2a2a', endColorstr='#2a2a2a',GradientType=1 ); /* IE6-9 */
|
|
|
|
background: linear-gradient(left, rgba(42,42,42,0) 0%,rgba(42,42,42,1) 50%,rgba(42,42,42,1) 100%); /* W3C */
|
2011-06-16 03:27:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.playlist-tracks li .item:hover .fade {
|
2011-06-20 20:42:21 +00:00
|
|
|
background: -moz-linear-gradient(left, rgba(64,64,64,0) 0%, rgba(64,64,64,1) 50%, rgba(64,64,64,1) 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(64,64,64,0)), color-stop(50%,rgba(64,64,64,1)), color-stop(100%,rgba(64,64,64,1))); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(left, rgba(64,64,64,0) 0%,rgba(64,64,64,1) 50%,rgba(64,64,64,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(left, rgba(64,64,64,0) 0%,rgba(64,64,64,1) 50%,rgba(64,64,64,1) 100%); /* Opera11.10+ */
|
|
|
|
background: -ms-linear-gradient(left, rgba(64,64,64,0) 0%,rgba(64,64,64,1) 50%,rgba(64,64,64,1) 100%); /* IE10+ */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00404040', endColorstr='#404040',GradientType=1 ); /* IE6-9 */
|
|
|
|
background: linear-gradient(left, rgba(64,64,64,0) 0%,rgba(64,64,64,1) 50%,rgba(64,64,64,1) 100%); /* W3C */
|
2011-06-16 03:27:07 +00:00
|
|
|
}
|