mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
78875572e9
* add explicit blurring to left expanded image and full screen
55 lines
984 B
CSS
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;
|
|
}
|
|
}
|
|
}
|