lbry-desktop/ui/scss/component/_video.scss

88 lines
1.6 KiB
SCSS
Raw Normal View History

2017-04-13 20:52:26 +02:00
video {
2017-04-14 00:32:03 +02:00
object-fit: contain;
box-sizing: border-box;
max-height: 100%;
max-width: 100%;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
2017-04-14 00:32:03 +02:00
}
.video {
background: #000;
color: white;
2017-04-13 20:52:26 +02:00
}
.video-embedded {
2017-04-14 00:32:03 +02:00
max-width: $width-page-constrained;
2017-04-17 14:27:39 +02:00
max-height: $height-video-embedded;
height: $height-video-embedded;
position: relative; /*for .plyr below*/
2017-04-13 20:52:26 +02:00
video {
2017-04-14 00:32:03 +02:00
height: 100%;
}
&.video--hidden {
2017-04-17 14:27:39 +02:00
height: $height-video-embedded;
2017-04-13 20:52:26 +02:00
}
2017-04-14 00:32:03 +02:00
&.video--active {
2017-04-17 14:27:39 +02:00
/*background: none;*/
2017-04-14 00:32:03 +02:00
}
.video--loading--screen {
.loading--spinner {
width: 100px;
height: 100px;
background-color: white;
margin: auto;
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
@keyframes spin {
from { transform: rotate(0deg) }
to { transform: rotate(-360deg) }
}
}
.video--loading--status {
color: white;
}
}
.plyr {
top: 50%;
transform: translateY(-50%);
}
2017-04-14 00:32:03 +02:00
}
.video__cover {
text-align: center;
height: 100%;
width: 100%;
2017-04-14 01:43:17 +02:00
background-size: auto 100%;
background-position: center center;
background-repeat: no-repeat;
2017-04-14 00:32:03 +02:00
position: relative;
2017-04-17 22:45:51 +02:00
.video__play-button { @include absolute-center(); }
2017-04-14 00:32:03 +02:00
}
.video__play-button {
position: absolute;
width: 100%;
height: 100%;
cursor: pointer;
display: none;
font-size: $spacing-vertical * 3;
color: white;
z-index: 1;
background: $color-black-transparent;
2017-04-17 22:45:51 +02:00
opacity: 0.6;
2017-04-14 00:32:03 +02:00
left: 0;
top: 0;
2017-04-17 22:45:51 +02:00
&:hover {
opacity: 1;
transition: opacity $transition-standard;
}
}