Playlist draft

This commit is contained in:
Gregory Eremin
2012-09-09 21:20:41 +04:00
parent e72aa5c292
commit d1a5b11489
7 changed files with 100 additions and 3 deletions
@@ -8,6 +8,7 @@
@import "artist";
@import "album-track";
@import "player";
@import "playlist";
@import "auth";
@import "popup";
@import "tour";
+2 -2
View File
@@ -3,11 +3,11 @@
.controls {
float: left;
margin: 3px 0 0 -86px;
margin: 3px 0 0 -96px;
a {
@include inline-block;
margin: 11px 5px 0 0;
margin: 11px 2px 0 0;
font-size: 22px;
color: #e0e0e0;
text-shadow: 0 0 2px rgba(255, 255, 255, .6);
+33
View File
@@ -0,0 +1,33 @@
.playlist {
display: block;
position: absolute;
top: 50px;
right: 50%;
width: 618px;
margin-right: -430px;
padding: 5px 0;
background-color: red;
li {
display: block;
overflow: hidden;
.inner {
width: 10000px;
margin-left: 5px;
height: 20px;
position: relative;
.artists {
&:after {
content: ""
}
}
.length {
position: absolute;
left: 580px;
}
}
}
}