improve post list styling
This commit is contained in:
parent
92a6b5886e
commit
c11f29672e
|
@ -18,10 +18,10 @@
|
|||
padding: 0px;
|
||||
}
|
||||
li {
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
padding-left: 15px;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
@media (max-width: $max-width) {
|
||||
float: none;
|
||||
ul {
|
||||
padding: 5px 0px 5px;
|
||||
|
@ -41,7 +41,7 @@
|
|||
color: inherit;
|
||||
}
|
||||
border-bottom: 2px solid;
|
||||
@media (max-width: 600px) {
|
||||
@media (max-width: $max-width) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,23 +17,35 @@
|
|||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
&-item {
|
||||
margin: 40px -12px;
|
||||
padding: 5px 10px;
|
||||
border: 2px solid $dark;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
&-title {
|
||||
font-size: larger;
|
||||
font-weight: bold;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
&-day {
|
||||
float: right;
|
||||
}
|
||||
&-item {
|
||||
padding-bottom: 35px;
|
||||
&-summary {
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
&-list {
|
||||
&-meta {
|
||||
margin: 5px 0px 13px 0px;
|
||||
}
|
||||
|
||||
&-tags {
|
||||
margin: 5px 0px 13px 0px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -233,9 +233,3 @@ footer {
|
|||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 55em) {
|
||||
html {
|
||||
max-width: 650px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,3 +6,4 @@ $dark-highlight: #ff6565;
|
|||
$light-highlight: #c6359e;
|
||||
$gradient-left: #e96443;
|
||||
$gradient-right: #904e95;
|
||||
$max-width: 45em;
|
||||
|
|
|
@ -19,20 +19,16 @@
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
|
||||
<div class="posts">
|
||||
<ul class="posts-list">
|
||||
{{- range .Pages }}
|
||||
{{- if .Params.rss_only }}
|
||||
{{- else }}
|
||||
<li class="posts-item">
|
||||
<a href="{{.Permalink}}">
|
||||
<span class="posts-title" style="view-transition-name: post-title-{{ .Title | urlize }}">{{.Title}}</span>
|
||||
<span class="posts-day" style="view-transition-name: post-day-{{ .Title | urlize }}">{{ if .Site.Params.dateformShort }}{{ .Date.Format .Site.Params.dateformShort }}{{ else }}{{ .Date.Format "2006-01-02" }}{{ end }}</span>
|
||||
</a>
|
||||
<p style="view-transition-name: post-summary-{{ .Title | urlize }}">{{ .Summary | truncate 140 }}</p>
|
||||
<p>
|
||||
<p class="posts-title" style="view-transition-name: post-title-{{ .Title | urlize }}"><a href="{{.Permalink}}">{{.Title}}</a></p>
|
||||
<p class="posts-summary" style="view-transition-name: post-summary-{{ .Title | urlize }}">{{ .Summary | truncate 140 }}</p>
|
||||
<p class="posts-meta"><strong>Reading Time:</strong> {{ .ReadingTime }} minutes | <strong>Published:</strong> {{ dateFormat "2006-01-02" .Date }}</p>
|
||||
<p class="posts-tags">
|
||||
{{ $title := .Title }}
|
||||
{{- range (.GetTerms "tags") }}
|
||||
<a class="button" href="{{.Permalink}}" style="view-transition-name: post-tags-{{ $title | urlize }}{{ .Title | urlize }}">{{.Title}}</a>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<article>
|
||||
<div class="frontmatter">
|
||||
<h1 class="post-title" style="view-transition-name: title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
||||
<p><strong>Reading Time:</strong> {{ .ReadingTime }} minutes | <strong>Published:</strong> {{ dateFormat "2006-01-02" .Date }} | <strong>Last Edited:</strong> {{ dateFormat "2006-01-02" .Lastmod }}</a></p>
|
||||
<p><strong>Reading Time:</strong> {{ .ReadingTime }} minutes | <strong>Published:</strong> {{ dateFormat "2006-01-02" .Date }} | <strong>Last Edited:</strong> {{ dateFormat "2006-01-02" .Lastmod }}></p>
|
||||
</div>
|
||||
{{- if .Params.toc }}
|
||||
<aside id="toc">
|
||||
|
|
Loading…
Reference in New Issue