bigbuffet-rw/app/styles/components/audio-player.scss

52 lines
955 B
SCSS
Raw Normal View History

2020-06-24 19:53:25 -07:00
.audio-player {
@apply relative box-border overflow-hidden rounded-[10px] bg-black pb-11;
2021-05-17 17:39:08 -07:00
direction: ltr;
2020-06-24 19:53:25 -07:00
2021-05-17 17:39:08 -07:00
&.editable {
@apply rounded-none h-full;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__volume::before,
.video-player__seek::before {
@apply bg-white/10;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__seek__buffer {
@apply bg-white/20;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__buttons button {
@apply text-current opacity-[75];
2020-06-24 19:53:25 -07:00
&:active,
2021-05-17 17:39:08 -07:00
&:hover,
2020-06-24 19:53:25 -07:00
&:focus {
@apply text-current opacity-100;
2020-06-24 19:53:25 -07:00
}
}
2021-05-17 17:39:08 -07:00
.video-player__time-sep,
.video-player__time-total,
.video-player__time-current {
@apply text-current;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__seek::before,
.video-player__seek__buffer,
.video-player__seek__progress {
@apply top-0;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__seek__handle {
@apply -top-1;
2020-06-24 19:53:25 -07:00
}
2021-05-17 17:39:08 -07:00
.video-player__controls {
@apply pt-2.5 bg-transparent;
2020-06-24 19:53:25 -07:00
}
}
.media-spoiler-audio {
@apply relative mt-2 block cursor-pointer border-0 bg-cover bg-center bg-no-repeat;
2020-06-24 19:53:25 -07:00
}