summaryrefslogtreecommitdiff
path: root/public/style.css
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-12-17 16:51:07 +0100
committerPřemysl Eric Janouch <p@janouch.name>2023-12-17 18:12:54 +0100
commitf244e503d7935cbdc70f23eff6eb6067627dbf8f (patch)
tree8cba376a5f5220be5594c9ef225e96d0bb1e4de0 /public/style.css
parent08e768941fc4f423abdd4f2d496470bacf04b4ee (diff)
downloadgallery-f244e503d7935cbdc70f23eff6eb6067627dbf8f.tar.gz
gallery-f244e503d7935cbdc70f23eff6eb6067627dbf8f.tar.xz
gallery-f244e503d7935cbdc70f23eff6eb6067627dbf8f.zip
Add a view for similar images
Diffstat (limited to 'public/style.css')
-rw-r--r--public/style.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/public/style.css b/public/style.css
index 8a42a51..d6c2e3f 100644
--- a/public/style.css
+++ b/public/style.css
@@ -7,7 +7,9 @@ a { color: inherit; }
.body { display: flex; flex-grow: 1; overflow: hidden; }
.header { padding: .25rem .5rem; background: #aaa; color: white;
- border-bottom: 1px solid #444; }
+ border-bottom: 1px solid #444;
+ display: flex; justify-content: space-between; align-items: baseline;
+ column-gap: .5rem; }
ul.sidebar { margin: 0; padding: 0; background: #eee;
border-right: 1px solid #ccc; min-width: 10rem; overflow: auto; }
@@ -47,3 +49,8 @@ ul.sidebar li.child a {
.viewbar li { margin: 0; padding: 0; }
.viewbar meter { width: 1.25rem;
/* background: white; border: 1px solid #ccc; */ }
+
+.similar { padding: .5rem; flex-grow: 1; overflow: auto; }
+.similar h2 { margin: 1em 0 0.5em 0; padding: 0; font-size: 1.2rem; }
+.similar .row { display: flex; }
+.similar .row ul { margin: 0; padding: 0 0 0 1.25em; list-style-type: "- "; }