summaryrefslogtreecommitdiff
path: root/public/style.css
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-05-04 22:12:32 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-05-04 22:12:32 -0500
commit5b608a82bd1ebfd109520492cd6d9f54736ae862 (patch)
tree35cd29f9a14e65036a3882bdb00e594d8c95f89d /public/style.css
parent5284094278ed6e4861edc3dbadb1d53218e6f6d0 (diff)
downloadimmich-frame-5b608a82bd1ebfd109520492cd6d9f54736ae862.tar.xz
immich-frame-5b608a82bd1ebfd109520492cd6d9f54736ae862.zip
add icons and bottom controls
Diffstat (limited to 'public/style.css')
-rw-r--r--public/style.css61
1 files changed, 60 insertions, 1 deletions
diff --git a/public/style.css b/public/style.css
index ce4d76a..f8c26e2 100644
--- a/public/style.css
+++ b/public/style.css
@@ -1,5 +1,10 @@
body {
- background: black
+ background: black;
+ color: white;
+}
+
+svg {
+ fill: white;
}
.carousel-cell {
@@ -18,3 +23,57 @@ body {
max-width: 100%;
object-fit: contain;
}
+
+
+@media (max-width: 768px) {
+ .carousel-cell {
+ height: 100vh;
+ }
+}
+
+
+footer {
+ position: fixed;
+ bottom: 0;
+ width: 100%;
+}
+
+#bottom-container {
+ max-width: 1024px;
+ margin: auto;
+}
+
+#controls, #menu {
+ display: flex;
+}
+#menu {
+ width: 100%;
+}
+
+#controls {
+ width: 80%;
+ margin: auto;
+ padding-bottom: 48px;
+}
+
+footer a, footer button {
+ width: 100%;
+}
+
+footer svg {
+ height: 48px;
+ width: 100%;
+
+}
+
+#controls button {
+ background: none;
+ border: none;
+ padding: 0;
+}
+
+#menu {
+ padding: 16px;
+ box-sizing: border-box;
+ border-top: 1px solid rgb(55, 65, 81);
+}