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

71 lines
1.2 KiB
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;
}
2024-11-15 09:48:12 -05:00
@media (max-width: 800px) {
2024-10-29 14:49:21 -04:00
#lightgallery a {
width: calc(100vw / 3 - 10px);
height: calc(100vw / 3 - 10px);
overflow: hidden;
}
2024-11-15 09:48:12 -05:00
2024-10-29 14:49:21 -04:00
#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;
}
2024-11-15 09:48:12 -05:00
2024-10-29 05:29:14 -04:00
#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;
}
2024-11-15 09:48:12 -05:00
#header {
font-family: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif;
color: white;
width: 100%;
display: flex;
}
#header h1 {
font-size: 18pt;
font-weight: bold;
margin: 4px;
}
#download-all {
margin: auto 4px auto auto;
}