mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
109 lines
1.7 KiB
SCSS
109 lines
1.7 KiB
SCSS
@import "src/styles/variables";
|
|
|
|
.place {
|
|
position: relative;
|
|
height: $bar_height;
|
|
flex: 0 1 500px;
|
|
display: flex;
|
|
}
|
|
|
|
.wrap {
|
|
@include outer_shadow();
|
|
display: flex;
|
|
border-radius: $radius $radius 0 0;
|
|
// background: $main_gradient;
|
|
align-items: center;
|
|
background: lighten($content_bg, 6%);
|
|
// box-shadow: rgba(0, 0, 0, 0.5) 0 2px 5px, inset rgba(255, 255, 255, 0.3) 1px 1px,
|
|
// inset rgba(0, 0, 0, 0.3) 0 -1px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: $bar_height;
|
|
flex-direction: column;
|
|
transform: translate(0, 0);
|
|
z-index: 3;
|
|
min-width: 0;
|
|
}
|
|
|
|
.status {
|
|
flex: 0 0 $bar_height;
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
position: absolute;
|
|
z-index: 1;
|
|
height: $bar_height;
|
|
}
|
|
|
|
.playpause,
|
|
.close {
|
|
flex: 0 0 $bar_height;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
width: 32px;
|
|
height: 32px;
|
|
fill: darken(white, 50%);
|
|
stroke: none;
|
|
}
|
|
}
|
|
|
|
.close {
|
|
svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
flex: 1;
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.title {
|
|
color: darken(white, 50%);
|
|
font: $font_14_semibold;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
}
|
|
|
|
.progress {
|
|
position: relative;
|
|
height: 20px;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
|
|
&::after {
|
|
content: ' ';
|
|
top: 9px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
background: darken(white, 50%);
|
|
position: absolute;
|
|
border-radius: 2px;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.bar {
|
|
top: 7px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 6px;
|
|
background: darken(white, 50%);
|
|
position: absolute;
|
|
border-radius: 2px;
|
|
}
|