1
0
Fork 0
oldhaven/app/assets/stylesheets/player.scss

51 lines
856 B
SCSS
Raw Normal View History

2011-09-08 01:48:33 +00:00
.player {
.buttons {
text-align: center;
}
.now-playing {
text-align: center;
}
.progress {
width: 94%;
margin: 0 0 10px 3%;
height: 7px;
background-color: #e0e0e0;
.loaded {
width: 66%;
height: 7px;
background-color: #70c0c0;
.played {
width: 66%;
height: 7px;
background-color: #0090AA;
}
}
}
}
2011-06-27 11:14:14 +00:00
2011-09-08 01:48:33 +00:00
.playlist {
2011-09-15 06:15:50 +00:00
margin: 20px 0 0 0;
li {
list-style: none;
border-bottom: #DDD 1px solid;
.drag {
float: left;
margin: 3px 0 0 -3px;
width: 5px;
height: 32px;
background-color: #DDD;
cursor: pointer;
}
.artist-name {
font-size: 10px;
margin: 5px 0 0 5px;
}
.song-title {
margin: 0 0 5px 5px;
}
.song-duration {
float: right;
margin: 10px 5px 0 0;
}
2011-09-08 01:48:33 +00:00
}
2011-06-27 11:14:14 +00:00
}