mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-11 08:10:40 +00:00
99 lines
No EOL
2.4 KiB
Text
99 lines
No EOL
2.4 KiB
Text
// Copyright (C) 2017-2020 Smart code 203358507
|
|
|
|
@import (reference) '~stremio-colors/dist/less/stremio-colors.less';
|
|
@import (reference) '~stremio/common/screen-sizes.less';
|
|
|
|
:import('~stremio/common/MetaPreview/styles.less') {
|
|
meta-info-container: meta-info-container;
|
|
}
|
|
|
|
.metadetails-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: @color-background-dark2;
|
|
|
|
.nav-bar {
|
|
flex: none;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.metadetails-content {
|
|
flex: 1;
|
|
align-self: stretch;
|
|
position: relative;
|
|
z-index: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
.background-image-layer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
background: @color-background-dark2-70;
|
|
content: "";
|
|
}
|
|
|
|
.background-image {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
object-position: top left;
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
|
|
.meta-message-container {
|
|
flex: 0 1 30rem;
|
|
align-self: stretch;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
|
|
.image {
|
|
flex: none;
|
|
width: 12rem;
|
|
height: 12rem;
|
|
max-width: 100%;
|
|
margin-bottom: 1rem;
|
|
object-fit: contain;
|
|
object-position: center;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.message-label {
|
|
flex: none;
|
|
align-self: stretch;
|
|
font-size: 2rem;
|
|
text-align: center;
|
|
color: @color-secondaryvariant2-light1-90;
|
|
}
|
|
}
|
|
|
|
.meta-preview {
|
|
flex: 0 1 40rem;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.videos-list, .streams-list {
|
|
flex: 0 0 26.5rem;
|
|
align-self: stretch;
|
|
background-color: @color-background-dark5-70;
|
|
}
|
|
}
|
|
} |