120 lines
2.2 KiB
SCSS
Raw Normal View History

2011-10-01 17:04:28 +04:00
@import "opacity";
2011-09-08 05:48:33 +04:00
.player {
.now-playing {
text-align: center;
}
.progress {
width: 94%;
2011-09-16 05:57:41 +04:00
margin: 0 0 18px 3%;
height: 5px;
2011-09-16 14:57:16 +04:00
background-color: #f0f0f0;
2011-09-08 05:48:33 +04:00
.loaded {
2011-09-16 14:57:16 +04:00
width: 0;
2011-09-16 05:57:41 +04:00
height: 5px;
background-color: #d0e0e0;
cursor: pointer;
2011-09-08 05:48:33 +04:00
.played {
2011-09-16 14:57:16 +04:00
width: 0;
2011-09-16 05:57:41 +04:00
height: 5px;
2011-09-08 05:48:33 +04:00
background-color: #0090AA;
}
}
}
2011-10-01 17:04:28 +04:00
.buttons {
clear: both;
height: 50px;
.secondary-buttons {
float: left;
width: 20px;
margin: -10px 0 0 20px;
text-align: center;
a {
display: block;
margin: -5px 0 0 0;
@include opacity(0.3);
cursor: pointer;
&.do_empty {
margin-top: -2px;
}
&:hover {
@include opacity(0.6);
}
&.on {
@include opacity(0.9);
}
}
2011-10-01 17:04:28 +04:00
}
.primary-buttons {
float: left;
width: 200px;
margin: 10px 0 0 0;
text-align: center;
height: 36px;
.play {
border-radius: 21px !important;
padding: 11px 11px 11px 15px !important;
margin-top: -10px !important;
}
.pause {
font-weight: bold;
border-radius: 21px !important;
padding: 11px 16px 11px 16px !important;
display: none;
}
}
.quality-buttons {
float: left;
width: 20px;
a {
display: block;
@include opacity(0.4);
cursor: pointer;
&:hover {
@include opacity(0.8);
}
}
}
}
2011-09-08 05:48:33 +04:00
}
2011-06-27 15:14:14 +04:00
2011-09-08 05:48:33 +04:00
.playlist {
2011-09-15 10:15:50 +04:00
margin: 20px 0 0 0;
li {
list-style: none;
2011-09-16 05:57:41 +04:00
background-color: #ffffff;
2011-09-15 10:15:50 +04:00
border-bottom: #DDD 1px solid;
.artist-name {
2011-09-16 05:57:41 +04:00
font-size: 11px;
margin: 0 0 0 5px;
padding: 5px 0 0 0;
2011-09-15 10:15:50 +04:00
}
.song-title {
margin: 0 0 5px 5px;
}
.song-duration {
float: right;
2011-09-16 05:57:41 +04:00
margin: 15px 5px 0 0;
}
.remove {
display: none;
float: right;
margin: 13px 5px 0 0;
2011-09-16 05:57:41 +04:00
cursor: pointer;
2011-09-15 10:15:50 +04:00
}
2011-11-24 03:37:41 +04:00
&.unavailable {
background-color: #FFF0F0;
}
2011-09-15 13:38:24 +04:00
&.now {
2011-09-16 05:57:41 +04:00
background-color: #EAF5FF;
2011-09-15 13:38:24 +04:00
}
&:hover {
.remove {
display: block;
}
.song-duration {
display: none;
}
}
2011-09-08 05:48:33 +04:00
}
2011-06-27 15:14:14 +04:00
}