Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShane Hou <hsy.ghoul@gmail.com>2021-08-15 10:25:49 +0300
committerGitHub <noreply@github.com>2021-08-15 10:25:49 +0300
commit4caa06322171ff64b0b70a73302720e802dd667d (patch)
treead9e094e5e76fa9a7d15f5cc4b6ffe6b7efaa371
parent6c0cc7068089162a35d9f188772332c13eb26736 (diff)
Making the nested `<li>` style more consistent
Add a 20px margin top on nested `<li>`s
-rw-r--r--assets/css/style.css6
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 0351aea..a9fd357 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -685,14 +685,14 @@ b {
.article.markdown-body li>*,
.article.markdown-body blockquote>*,
.article.markdown-body .footnotes>* {
- margin-top: 0;
+ margin-top: 20px;
margin-bottom: 20px;
}
.article.markdown-body> :first-child,
.article.markdown-body li> :first-child,
.article.markdown-body blockquote> :first-child {
- margin-top: 0;
+ margin-top: 20px;
}
.article.markdown-body> :last-child,
@@ -771,4 +771,4 @@ b {
.article.markdown-body .lntable tr>:first-child {
border-right: 1px dashed #e6e6e6;
-} \ No newline at end of file
+}