diff options
author | Andrew Godwin | 2022-11-16 23:00:10 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 23:00:10 -0700 |
commit | 716d8a766ae0c4e2539f2df601269a3203bcd715 (patch) | |
tree | 6fca650c5960b06494ba322d4621727b81bd4fa0 /static | |
parent | b13c239213147b7acae4060aff35640d625b5169 (diff) | |
download | takahe-716d8a766ae0c4e2539f2df601269a3203bcd715.tar.gz takahe-716d8a766ae0c4e2539f2df601269a3203bcd715.tar.bz2 takahe-716d8a766ae0c4e2539f2df601269a3203bcd715.zip |
Show post images
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css index f07d78c..3c1ef49 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -570,6 +570,22 @@ h1.identity small { margin: 12px 0 4px 0; } +.post .attachments { + margin: 10px 0 10px 64px; +} + +.post .attachments a.image { + display: inline-block; + border: 3px solid var(--color-bg-menu); + border-radius: 3px; +} + +.post .attachments a.image img { + display: inline-block; + max-width: 200px; + max-height: 200px; +} + .post .actions { padding-left: 64px; } |