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

github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorChen Xianmin <xianmin12@gmail.com>2019-07-14 13:46:04 +0300
committerGitHub <noreply@github.com>2019-07-14 13:46:04 +0300
commit332dd8ece0bbc227c340257d3db4bd1faec07864 (patch)
tree6a7143721c6976e5ef3f4840c3e045d7ebd706b4 /assets
parent314ad302962c6fbc91b339d6a1a32f82625156cb (diff)
feat: support GitInfo, use git commit to generate lastmod info (#206)
see https://gohugo.io/variables/git/
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/_partial/_post/_copyright.scss10
1 files changed, 8 insertions, 2 deletions
diff --git a/assets/sass/_partial/_post/_copyright.scss b/assets/sass/_partial/_post/_copyright.scss
index 9fb6e5e..de85c01 100644
--- a/assets/sass/_partial/_post/_copyright.scss
+++ b/assets/sass/_partial/_post/_copyright.scss
@@ -4,6 +4,7 @@
border: 1px solid #e1e1e1;
border-left: solid;
margin-top: 3em;
+ width: 100%;
.copyright-item {
margin: 5px 0;
@@ -18,9 +19,9 @@
}
.item-title {
- display: inline-block;
+ display: table-cell;
min-width: 5rem;
- margin-right: .5rem;
+ // margin-right: .5rem;
text-align: right;
font-weight: bold;
@@ -28,5 +29,10 @@
content: " :";
}
}
+
+ .item-content {
+ display: table-cell;
+ padding-left: .5rem;
+ }
}
}