minor changes
This commit is contained in:
parent
88b6ea7715
commit
d004ebec25
2 changed files with 7 additions and 8 deletions
|
@ -2,9 +2,8 @@
|
|||
<a href="{{.Permalink}}">
|
||||
<h2>{{.Title}}</h2>
|
||||
</a>
|
||||
<div>
|
||||
<p>{{.Params.description}}{{if .Date}}<br>Published: <strong>{{.Date | time.Format "Jan 02 2006"}}{{end}}</strong></p>
|
||||
</div>
|
||||
<p>{{if .Date}}<strong>{{.Date | time.Format "Jan 02 2006"}}</strong>{{end}}</p>
|
||||
<p style="text-align: left;">{{.Summary}}</p>
|
||||
{{ if .GetTerms "tags" }}
|
||||
<div class="post-tags">
|
||||
{{range .GetTerms "tags" }}
|
||||
|
|
|
@ -247,7 +247,7 @@ article .highlight pre {
|
|||
|
||||
@media screen and (orientation:portrait) {
|
||||
article {
|
||||
max-width: 90vw;
|
||||
max-width: 100vw;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -263,12 +263,11 @@ article .highlight pre {
|
|||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 1rem;
|
||||
align-items: flex-start;
|
||||
padding: 25px;
|
||||
border-radius: 25px;
|
||||
font-size: 18px;
|
||||
width: 360px;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.post>* {}
|
||||
|
@ -285,10 +284,11 @@ article .highlight pre {
|
|||
}
|
||||
|
||||
.post-tags {
|
||||
max-width: 80%;
|
||||
width:100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue