Files
feishin/src/renderer/features/player/components/full-screen-player-image.module.css
T
Kendall Garner 78875572e9 add explicit blurring to left expanded image and full screen (#1701)
* add explicit blurring to left expanded image and full screen
2026-02-12 18:49:57 -08:00

55 lines
984 B
CSS

.image {
position: absolute;
max-width: 100%;
height: 100%;
border-radius: 5px;
filter: drop-shadow(0 0 5px rgb(0 0 0 / 40%)) drop-shadow(0 0 5px rgb(0 0 0 / 40%));
}
.censored.image {
filter: blur(30px);
}
.image-container {
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
max-width: 100%;
height: 65%;
aspect-ratio: 1/1;
margin-bottom: 1rem;
}
.metadata-container {
display: flex;
justify-content: center;
padding: 1rem;
text-align: center;
cursor: default;
border-radius: 5px;
a {
cursor: pointer;
}
h1 {
font-size: 3.5vh;
}
}
.player-container {
@media screen and (height < 640px) {
.full-screen-player-image-metadata {
display: none;
height: 100%;
margin-bottom: 0;
}
.image-container {
height: 100%;
margin-bottom: 0;
}
}
}