commit a454c366d3365046c857d7e1f73fe36e8b7dc6b7 parent 15e9c9e579b7e9a9145b1ca9618750f115b7cbe2 Author: Nuno Sempere <nuno.semperelh@protonmail.com> Date: Sun, 4 Dec 2022 23:57:00 +0000 feat: change style to make for easier markdown figcaptions Per this trick: <https://stackoverflow.com/questions/19331362/using-an-image-caption-in-markdown-jekyll> Diffstat:
| M | pub/style/style.css | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/pub/style/style.css b/pub/style/style.css @@ -297,3 +297,12 @@ input:focus::placeholder { color: transparent; } +/* Figcaptions for markdown + * Per <https://stackoverflow.com/questions/19331362/using-an-image-caption-in-markdown-jekyll> + */ + +img + em { + display: block; + text-align: center; + font-size: 1em; +}