mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
111 lines
No EOL
2.5 KiB
Text
111 lines
No EOL
2.5 KiB
Text
.meta-preview-container {
|
|
position: relative;
|
|
z-index: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&.compact {
|
|
.meta-info {
|
|
.logo {
|
|
width: 100%;
|
|
object-position: center;
|
|
}
|
|
|
|
.duration-release-info-container {
|
|
justify-content: space-evenly;
|
|
|
|
.duration, .release-info {
|
|
margin: 1rem 0.4rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.action-buttons-container {
|
|
justify-content: space-evenly;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.background-image-layer {
|
|
position: absolute;
|
|
top: -10px;
|
|
right: -10px;
|
|
bottom: -10px;
|
|
left: -10px;
|
|
z-index: -1;
|
|
|
|
.background-image {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
object-position: top left;
|
|
filter: blur(5px) brightness(80%);
|
|
}
|
|
}
|
|
|
|
.meta-info-container {
|
|
flex: 1;
|
|
align-self: stretch;
|
|
padding: 0 1rem;
|
|
overflow-y: auto;
|
|
|
|
.logo {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: 7rem;
|
|
margin-top: 1rem;
|
|
object-fit: contain;
|
|
object-position: left center;
|
|
background-color: var(--color-surfacedarker20);
|
|
}
|
|
|
|
.duration-release-info-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin-top: 1rem;
|
|
|
|
.duration-label, .release-info-label {
|
|
flex-grow: 0;
|
|
flex-shrink: 1;
|
|
flex-basis: auto;
|
|
margin: 1rem 1rem 1rem 0;
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
color: var(--color-surfacelighter);
|
|
}
|
|
}
|
|
|
|
.name-container {
|
|
margin-top: 1rem;
|
|
font-size: 1.4rem;
|
|
color: var(--color-surfacelighter);
|
|
}
|
|
|
|
.description-container {
|
|
margin-top: 1rem;
|
|
color: var(--color-surfacelighter);
|
|
}
|
|
|
|
.meta-links {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
.action-buttons-container {
|
|
flex: none;
|
|
align-self: stretch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
padding: 0 1rem;
|
|
|
|
.action-button {
|
|
flex: none;
|
|
width: 6rem;
|
|
height: 6rem;
|
|
margin: 1rem 0;
|
|
}
|
|
}
|
|
} |