77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
#player {
|
|
background-color: #222;
|
|
}
|
|
#player .now-playing {
|
|
height: 30px;
|
|
color: #FFF;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
}
|
|
#player .progress {
|
|
width: 330px;
|
|
height: 5px;
|
|
background-color: #333;
|
|
margin: 0 10px;
|
|
cursor: pointer;
|
|
}
|
|
#player .progress .loaded {
|
|
width: 0;
|
|
height: 5px;
|
|
background-color: #405050;
|
|
}
|
|
#player .progress .played {
|
|
width: 0;
|
|
height: 5px;
|
|
background-color: #09A;
|
|
}
|
|
#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');
|
|
}
|
|
|
|
.playlist-tracks {
|
|
width: 343px;
|
|
}
|
|
.playlist-tracks li {
|
|
display: block;
|
|
}
|
|
.playlist-tracks li .item {
|
|
padding: 5px 6px;
|
|
overflow: hidden;
|
|
}
|
|
.playlist-tracks li .item:hover {
|
|
background-color: #D0E0F0;
|
|
cursor: default;
|
|
}
|
|
.playlist-tracks li:nth-child(even) {
|
|
background-color: #F0F0F0;
|
|
cursor: default;
|
|
}
|
|
.playlist-tracks li.now .item {
|
|
background-color: #E0EAF0;
|
|
cursor: default;
|
|
}
|
|
.playlist-tracks li .item .duration {
|
|
display: block;
|
|
float: right;
|
|
} |