a6cbcc273e
Made-with: Cursor
64 lines
1008 B
CSS
64 lines
1008 B
CSS
.root {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: var(--bg0);
|
|
}
|
|
|
|
.fill {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.placeholderBg {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--color-overlay-dark-6);
|
|
}
|
|
|
|
.video {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.vignette {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.titleWrap {
|
|
position: absolute;
|
|
left: 18px;
|
|
bottom: 16px;
|
|
right: 18px;
|
|
color: var(--text0);
|
|
}
|
|
|
|
.titleCompact {
|
|
font-size: var(--text-xl);
|
|
font-weight: 900;
|
|
letter-spacing: -0.5px;
|
|
text-shadow: var(--shadow-title);
|
|
line-height: 1.1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.titleFull {
|
|
font-size: var(--text-title-lg);
|
|
font-weight: 900;
|
|
letter-spacing: -0.5px;
|
|
text-shadow: var(--shadow-title);
|
|
line-height: 1.1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|