immich-public-proxy/app/public/style.css

52 lines
917 B
CSS
Raw Permalink Normal View History

2024-10-28 15:47:14 -04:00
html {
background: #191919;
}
#lightgallery a {
2024-10-29 05:49:54 -04:00
position: relative;
display: inline-block;
2024-10-28 15:47:14 -04:00
text-decoration: none;
margin: 0;
padding: 0;
2024-10-29 05:29:14 -04:00
cursor: pointer;
2024-10-28 15:47:14 -04:00
}
2024-10-29 14:49:21 -04:00
#lightgallery img {
max-height: 250px;
margin: 4px;
}
@media (max-width:800px) {
#lightgallery a {
width: calc(100vw / 3 - 10px);
height: calc(100vw / 3 - 10px);
overflow: hidden;
}
#lightgallery img {
width: 100%;
2024-11-01 07:18:13 -04:00
height: 100%;
2024-10-29 14:49:21 -04:00
object-fit: cover;
object-position: center;
}
}
2024-10-29 05:29:14 -04:00
.play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
background-image: url('/images/play.png');
background-size: contain;
background-repeat: no-repeat;
opacity: 0.5;
}
#lightgallery a:has(.play-icon):hover .play-icon {
opacity: 1;
2024-10-28 15:47:14 -04:00
}
2024-11-01 06:58:27 -04:00
#password {
color: white;
}