fixed margin issue introduced by floating image in article preview
This commit is contained in:
parent
17336c6bda
commit
f2f73cfe50
|
@ -261,14 +261,14 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
hr { display: none; }
|
hr { display: none; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.postlistitem.card {
|
.postlistitem.card div {
|
||||||
img {
|
img {
|
||||||
margin: 15px auto;
|
margin: 15px auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 500px) {
|
@media only screen and (min-width: 500px) {
|
||||||
.postlistitem.card {
|
.postlistitem.card > div {
|
||||||
img {
|
img {
|
||||||
max-width: 250px;
|
max-width: 250px;
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
{{/* pagination */}}
|
{{/* pagination */}}
|
||||||
{{ range (.Paginate $postsList).Pages }}
|
{{ range (.Paginate $postsList).Pages }}
|
||||||
<article class="card postlistitem {{ if .Site.Params.discreteCards }}discrete{{ end }}">
|
<article class="card postlistitem {{ if .Site.Params.discreteCards }}discrete{{ end }}">
|
||||||
|
<div>
|
||||||
<h2>
|
<h2>
|
||||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -27,8 +28,9 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{end}}
|
{{end}}
|
||||||
<div class="articlePreview">
|
<div class="articlePreview">
|
||||||
{{ .Summary }}
|
<p>{{ .Summary }}</p>
|
||||||
<a href="{{ .Permalink }}">Continue reading </a>
|
<p><a href="{{ .Permalink }}">Continue reading </a></p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
</article>
|
</article>
|
||||||
|
|
Loading…
Reference in New Issue