lbry-desktop/src/ui/scss/component/_content.scss

116 lines
1.8 KiB
SCSS
Raw Normal View History

2018-10-17 19:14:24 +02:00
.content__cover {
// Video thumbnail with play/download button
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
align-items: center;
2018-10-17 19:14:24 +02:00
justify-content: center;
position: absolute;
background-position: 50% 50%;
background-repeat: no-repeat;
2019-01-24 19:09:27 +01:00
background-size: 100%;
margin: auto;
2018-10-17 19:14:24 +02:00
&:not(.card__media--nsfw) {
background-color: #000; // solid black to blend nicely when the video starts (if it doesn't take the full width)
2018-10-17 19:14:24 +02:00
}
&:hover {
cursor: pointer;
2019-02-13 17:27:20 +01:00
.button--view,
.button--play {
background-color: $lbry-green-3;
}
2018-10-17 19:14:24 +02:00
}
}
2018-03-26 23:32:43 +02:00
.content__embedded {
@include thumbnail;
2018-10-17 19:14:24 +02:00
position: relative;
2018-03-26 23:32:43 +02:00
video {
width: 100%;
2018-10-17 19:14:24 +02:00
height: 100%;
2018-03-26 23:32:43 +02:00
top: 0;
left: 0;
2018-10-17 19:14:24 +02:00
position: absolute;
&:hover {
cursor: pointer;
}
2019-05-26 08:18:47 +02:00
}
&:-webkit-full-screen {
width: 100%;
height: 100%;
}
2018-03-26 23:32:43 +02:00
}
2018-10-17 19:14:24 +02:00
.content__empty {
@include thumbnail;
2018-03-26 23:32:43 +02:00
align-items: center;
2018-10-17 19:14:24 +02:00
background-color: $lbry-black;
color: $lbry-white;
display: flex;
2018-03-26 23:32:43 +02:00
justify-content: center;
2018-10-17 19:14:24 +02:00
width: 100%;
}
2018-03-26 23:32:43 +02:00
.content__empty--nsfw,
.card__media--nsfw {
background-color: $lbry-grape-3;
2018-03-26 23:32:43 +02:00
}
.card__media--disabled {
opacity: 0.5;
pointer-events: none;
}
2018-10-17 19:14:24 +02:00
.content__loading {
2018-05-03 20:23:28 +02:00
width: 100%;
height: 100%;
2018-10-17 19:14:24 +02:00
align-items: center;
2018-03-26 23:32:43 +02:00
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 var(--spacing-vertical-large);
background-color: #000;
2018-03-26 23:32:43 +02:00
}
.content__loading-text {
color: $lbry-white;
2018-03-26 23:32:43 +02:00
}
.content__view {
width: 100%;
2018-10-17 19:14:24 +02:00
height: 100%;
top: 0;
left: 0;
align-items: center;
2018-10-17 19:14:24 +02:00
display: flex;
justify-content: center;
position: absolute;
2018-10-17 19:14:24 +02:00
iframe {
width: 100%;
height: 100%;
background-color: $lbry-white;
}
}
.content__view--container {
width: 100%;
height: 100%;
top: 0;
left: 0;
align-items: center;
display: flex;
justify-content: center;
position: absolute;
}