We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa3171 commit dba3e5aCopy full SHA for dba3e5a
index.hbs
@@ -2,7 +2,7 @@
2
3
<div class="static-content">
4
{{#foreach posts}}
5
- <h3><a href="{{url}}">{{title}}</a></h3>
+ <a class="post__list__item" href="{{url}}">{{title}}</a>
6
<p><em>{{date published_at format="MMMM DD, YYYY"}}</em></p>
7
{{/foreach}}
8
src/css/base/typography.css
@@ -23,7 +23,6 @@ h2 {
23
font-weight: 700;
24
line-height: normal;
25
margin-bottom: 16px;
26
- text-transform: uppercase;
27
}
28
29
h3 {
src/css/pages/post.css
@@ -39,6 +39,13 @@
39
margin-bottom: 0.5em;
40
41
42
+.post__list__item {
43
+ color: var(--red);
44
+ font-size: 1.5rem;
45
+ font-weight: 700;
46
+ line-height: 2rem;
47
+}
48
+
49
/* tocbot stuff */
50
.gh-toc > .toc-list {
51
position: relative;
0 commit comments