diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-05-24 22:22:07 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-05-24 22:22:07 +0200 |
commit | a19196cee506556ed06ce2963bbcfa0004469e74 (patch) | |
tree | d83e2237facc6a7ef0a7540f058742be0fe229a9 /share/css/main.css | |
parent | 5814bd16d520b779dce68d69241c940921080a4f (diff) |
add an optional detail page. more EXIF to come.
Diffstat (limited to 'share/css/main.css')
-rw-r--r-- | share/css/main.css | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/share/css/main.css b/share/css/main.css index 859bc61..6a626ff 100644 --- a/share/css/main.css +++ b/share/css/main.css @@ -10,8 +10,8 @@ div.image-container { text-align: center; font-size: 80%; float: left; - width: /* $boxwidth */; - height: /* $boxheight */; + width: 275.0px; + height: 275.0px; } div.image-container a { @@ -19,8 +19,23 @@ div.image-container a { } div.image-container img { - max-width: /* $imgwidth */; - max-height: /* $imgheight */; + max-width: 250px; + max-height: 250px; +} + +div.image-page img { + max-width: 100%; +} + +div.image-details { + max-width: 50em; + margin-top: 2em; + margin-left: auto; + margin-right: auto; +} + +div.image-details th { + text-align: left; } .gslide-desc p span { |