diff options
author | Jonas Smedegaard <dr@jones.dk> | 2014-01-21 13:05:42 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2014-01-21 13:05:42 +0100 |
commit | 737c3c3140a4cb03b370eb09cc65caac899a2f9d (patch) | |
tree | fb6d953e41e87949f33b3397ef2e7b5e6d2cd516 | |
parent | 84cbcedf0652bc722def25f3b50c0154afd24257 (diff) |
Avoid general img directive styling (but preserve styling specific of captions).
-rw-r--r-- | style.scss | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -10,13 +10,18 @@ @include ikiwiki-pre; // generic styles @include ikiwiki-lists; -@include ikiwiki-plugin-img; @include ikiwiki-feedbutton; @include ikiwiki-forms; @include ikiwiki-alignment; @include ikiwiki-debug; @include ikiwiki-plugin-highlight; @include ikiwiki-plugin-color; +// from excluded ikiwiki-plugin-img +.img caption { + font-size: 80%; + caption-side: bottom; + text-align: center; +} // shell // layout @include ikiwiki-site; |