diff options
| author | colorchestra <morph@posteo.de> | 2020-11-18 18:21:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-18 18:21:45 +0100 |
| commit | b4a26052227c37a768846af47dfedeeab187b3f7 (patch) | |
| tree | 594a88ddf30f9fb35acfe03b7cce8b7f7b7ae0f0 /static/css | |
| parent | 3fcb92e2c26e0b9e110ab0c8d1a6afb921c6ac1f (diff) | |
| parent | f2dbf084a70b47113f6741455b34e3d65fcdabb1 (diff) | |
Merge pull request #8 from pfandzelter/add-image-captions
Add Captions to Images
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/style.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css index 3990f6b..d239bd5 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -4,3 +4,6 @@ p > code{color: #FFFFFF; background:#000000; padding:2px} pre{color: #FFFFFF; background:#000000; padding:24px; overflow-x: auto} article{padding:24px 0} .center {display: block;margin-left: auto;margin-right: auto;width: 100%;} +img {display: block; max-width: 100%; height: auto;} +figcaption {color: #888; font: 12px/1.5 monospace; text-align: center;} +figure {margin: auto} |