diff options
author | Jonas Kohl | 2024-09-12 19:49:17 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-12 19:49:17 +0200 |
commit | 086e2d2668784469ec114f6e6fd2b3dace3d7c3b (patch) | |
tree | b9bacedb713501d88d24085940267a7c94e69b29 /src/ui/site.css | |
parent | 34b1b391d4b03659a96f868857c230002b351514 (diff) |
Way more progress on forum
Diffstat (limited to 'src/ui/site.css')
-rw-r--r-- | src/ui/site.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/ui/site.css b/src/ui/site.css new file mode 100644 index 0000000..3c77e58 --- /dev/null +++ b/src/ui/site.css @@ -0,0 +1,37 @@ +.footer { + margin-top: 1em; +} +.media-body > .panel, +.media-body > .well, +.media-body > .alert { + margin-bottom: 0; +} +.seamless-inline { + display: inline; + margin: 0; + padding: 0; + border: none; +} +/* boost specificity */ +html.no-js .js-only.js-only.js-only { + display: none !important; +} +.panel-body > blockquote { + font-size: 14px; +} +.post-images { + margin-top: 8px; +} +.image-attachment { + float: left; + display: block; + margin-right: 8px; + text-decoration: none; +} +.image-attachment-image { + display: block; + border: 4px solid white; + -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.33), 0 0 1px rgba(0,0,0,.33), 0 1px 1px rgba(0,0,0,.075) inset; + box-shadow: 0 1px 2px rgba(0,0,0,.33), 0 0 1px rgba(0,0,0,.33), 0 1px 1px rgba(0,0,0,.075) inset; +} + |