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

57 lines
1.1 KiB
SCSS
Raw Normal View History

2012-09-01 21:55:01 +04:00
.player {
2012-09-02 02:03:19 +04:00
width: 518px;
2012-09-01 21:55:01 +04:00
.controls {
float: left;
margin: 3px 0 0 -103px;
a {
margin: 5px 6px 0 -9px;
}
2012-09-02 02:03:19 +04:00
.pause {
display: none;
}
2012-09-01 21:55:01 +04:00
}
.progress-bar {
position: relative;
width: 100%;
height: 26px;
margin: 8px 0 0;
background-color: rgba(0, 0, 0, .3);
border: {
style: solid;
width: 1px;
color: rgba(0, 0, 0, .3);
radius: 4px;
}
@include box-shadow(inset 0 0 1px rgba(0, 0, 0, .2));
.bar {
position: absolute;
2012-09-02 02:03:19 +04:00
width: 0%;
2012-09-01 21:55:01 +04:00
height: 26px;
background-color: rgba(255, 255, 255, .1);
@include box-shadow(inset 0 0 2px rgba(255, 255, 255, .2));
@include border-radius(4px 0px 0px 4px);
}
.title {
position: absolute;
left: 8px;
font: {
family: "Source Sans Pro", $helvetica;
size: 14px;
}
line-height: 24px;
color: #ffffff;
text-shadow: 1px 1px 0 rgba(80, 80, 80, .4);
}
.move-it {
position: absolute;
width: 100%;
height: 26px;
z-index: 9999;
}
}
}