beathaven/app/assets/stylesheets/playlist.css.scss

53 lines
906 B
SCSS
Raw Permalink Normal View History

2012-09-09 21:20:41 +04:00
.playlist {
2012-09-10 03:47:36 +04:00
display: none;
2012-09-10 20:45:17 +04:00
position: fixed;
2012-09-10 03:47:36 +04:00
top: 41px;
2012-09-09 21:20:41 +04:00
right: 50%;
2012-09-10 20:45:17 +04:00
width: 578px;
2012-09-09 21:20:41 +04:00
margin-right: -430px;
2012-09-10 03:47:36 +04:00
padding: 7px 0 3px 0;
background-color: #124ba8;
border: {
width: 1px;
color: #123b98;
style: solid;
bottom-right-radius: 6px;
bottom-left-radius: 6px;
}
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, .5));
2012-09-09 21:20:41 +04:00
li {
display: block;
overflow: hidden;
2012-09-10 03:47:36 +04:00
color: #d0d0d0;
line-height: 20px;
&.active {
color: #ffffff;
background-color: rgba(255, 255, 255, .3);
}
&:hover {
background-color: rgba(255, 255, 255, .1);
cursor: pointer;
}
2012-09-09 21:20:41 +04:00
.inner {
width: 10000px;
margin-left: 5px;
height: 20px;
position: relative;
.artists {
&:after {
content: ""
}
}
.length {
position: absolute;
2012-09-10 20:45:17 +04:00
right: 9431px;
2012-09-09 21:20:41 +04:00
}
}
}
}