1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2025-01-01 05:31:59 +00:00
immich-public-proxy/app/public/style.css

71 lines
1.2 KiB
CSS
Raw Normal View History

2024-10-28 19:47:14 +00:00
html {
background: #191919;
}
#lightgallery a {
2024-10-29 09:49:54 +00:00
position: relative;
display: inline-block;
2024-10-28 19:47:14 +00:00
text-decoration: none;
margin: 0;
padding: 0;
2024-10-29 09:29:14 +00:00
cursor: pointer;
2024-10-28 19:47:14 +00:00
}
2024-10-29 18:49:21 +00:00
#lightgallery img {
max-height: 250px;
margin: 4px;
}
2024-11-15 14:48:12 +00:00
@media (max-width: 800px) {
2024-10-29 18:49:21 +00:00
#lightgallery a {
width: calc(100vw / 3 - 10px);
height: calc(100vw / 3 - 10px);
overflow: hidden;
}
2024-11-15 14:48:12 +00:00
2024-10-29 18:49:21 +00:00
#lightgallery img {
width: 100%;
2024-11-01 11:18:13 +00:00
height: 100%;
2024-10-29 18:49:21 +00:00
object-fit: cover;
object-position: center;
}
}
2024-10-29 09:29:14 +00: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 14:48:12 +00:00
2024-10-29 09:29:14 +00:00
#lightgallery a:has(.play-icon):hover .play-icon {
opacity: 1;
2024-10-28 19:47:14 +00:00
}
2024-11-01 10:58:27 +00:00
#password {
color: white;
}
2024-11-15 14:48:12 +00: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;
}