Changes
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
<article class="card">
|
<article class="card">
|
||||||
<div class="card-body">
|
<h2 class="card-title">
|
||||||
<h2 class="post-title card-text">
|
<a href="{{ .Permalink }}" rel="bookmark" title="Link to {{ .Title }}">{{ .Title }}</a>
|
||||||
<a href="{{ .Permalink }}" rel="bookmark" title="Link to {{ .Title }}">{{ .Title }}</a>
|
</h2>
|
||||||
</h2>
|
<span class="post-date">Published {{ .Date.Format "Jan 2, 2006" }}</span>
|
||||||
<span class="post-date card-text">Published {{ .Date.Format "Jan 2, 2006" }}</span>
|
<p>{{ .Description }}</p>
|
||||||
<p>{{ .Description }}</p>
|
{{ if .Truncated }}<a class="moretag" href="{{ .Permalink }}">Continue reading</a>{{ end }}
|
||||||
{{ if .Truncated }}<a class="moretag card-text" href="{{ .Permalink }}">Continue reading</a>{{ end }}
|
|
||||||
</div>
|
|
||||||
</article>
|
</article>
|
||||||
@@ -2,7 +2,6 @@ body {
|
|||||||
font-family: 'LatoLatinWeb', Avenir, HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
font-family: 'LatoLatinWeb', Avenir, HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
||||||
color: #3A3B3C;
|
color: #3A3B3C;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.5;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@@ -51,11 +50,17 @@ img {
|
|||||||
.card-columns {
|
.card-columns {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
grid-gap: 25px;
|
grid-gap: 30px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.card {
|
.card {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 20px 25px 0px rgba(0, 0, 0, 0.05);
|
||||||
|
}
|
||||||
|
.card-title {
|
||||||
|
margin: 5px 0;
|
||||||
}
|
}
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 5px solid #D1D1D1;
|
border-left: 5px solid #D1D1D1;
|
||||||
@@ -88,6 +93,9 @@ hr {
|
|||||||
border-bottom: 1px solid #D1D1D1;
|
border-bottom: 1px solid #D1D1D1;
|
||||||
margin-top: 3.125rem 0;
|
margin-top: 3.125rem 0;
|
||||||
}
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
table {
|
table {
|
||||||
color: #3A3B3C;
|
color: #3A3B3C;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
|
|||||||
Reference in New Issue
Block a user