浏览代码

:art: Improve figure style from markdown

Pandoc encapsulate images into figures.

Add CSS to center image et colorize caption.
DricomDragon 1 年之前
父节点
当前提交
8f44dfb6fa
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/include/css/custom/main.css

+ 8 - 0
src/include/css/custom/main.css

@@ -150,7 +150,15 @@ table tbody + tbody {
     border-top: 2px solid #dee2e6;
 }
 
+figure {
+    text-align: center;
+}
+
 figure > img { /* img-fluid */
     max-width: 100%;
     height: auto;
 }
+
+figcaption {
+    color: #5e5e5e;
+}