@@ -91,12 +91,13 @@ h1 {
}
span {
- margin-right: .5em;
color: var(--c-txt-alt);
- }
-
- a {
- display: block;
+ font-size: 75%;
+ font-style: italic;
+ &::before {
+ content: "/ ";
+ color: var(--c-txt-alt2);
+ }
@@ -454,6 +455,7 @@ a.footnote-ref {
.post-group {
margin-top: 2rem;
+ padding-left: 2px;
.post-year {
@@ -487,10 +489,6 @@ a.footnote-ref {
display: flex;
gap: 1.5rem;
- .recent-posts-list a {
- display: inline;
@media all and (min-width: 992px) {
@@ -12,8 +12,8 @@
<ul class="recent-posts-list lsc">
{{ range first 3 (where site.RegularPages "Type" "in" "writing") -}}
<li>
- <span>{{ .Date.Local.Format "2006-01-02" }}</span>
<a href="{{.RelPermalink}}">{{.Title}}</a>
+ <span>{{ .Date.Local.Format "2006-01-02" }}</span>
</li>
{{ end }}
</ul>