fixes after PRs

This commit is contained in:
panr 2023-06-10 00:27:17 +02:00
parent 4a8f9aa798
commit 3a5a676118
11 changed files with 73 additions and 53 deletions

View File

@ -12,7 +12,7 @@ a.button {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 8px 18px; padding: 8px 18px;
margin-bottom: 5px; margin: 5px 0;
text-decoration: none; text-decoration: none;
text-align: center; text-align: center;
border-radius: 8; border-radius: 8;

View File

@ -4,6 +4,7 @@ input, textarea, select {
border: 1px solid $accent; border: 1px solid $accent;
border-radius: 0; border-radius: 0;
padding: 10px; padding: 10px;
margin: 5px 0;
font: inherit; font: inherit;
appearance: none; appearance: none;
@ -28,3 +29,15 @@ select {
::placeholder { ::placeholder {
color: transparentize($accent, .5); color: transparentize($accent, .5);
} }
input {
&[type="checkbox"] {
vertical-align: middle;
padding: 10px;
box-shadow: inset 0 0 0 3px $background;
&:checked {
background: $accent;
}
}
}

View File

@ -33,6 +33,14 @@
font-size: 1rem; font-size: 1rem;
margin-bottom: 10px; margin-bottom: 10px;
color: transparentize($accent, .3); color: transparentize($accent, .3);
& > *:not(:first-child) {
&::before {
content: "::";
display: inline-block;
margin: 0 8px;
}
}
} }
&-title { &-title {
@ -72,16 +80,6 @@
margin-top: 30px; margin-top: 30px;
} }
input[type="checkbox"] {
vertical-align: middle;
padding: 5px;
margin: 0 .2em .25em -.2em;
}
input[type="checkbox"]:checked {
background: $accent;
}
&-cover { &-cover {
border: 20px solid $accent; border: 20px solid $accent;
background: transparent; background: transparent;

View File

@ -16,5 +16,4 @@
@import "syntax"; @import "syntax";
@import "code"; @import "code";
@import "terms"; @import "terms";
@import "term";
@import "gist"; @import "gist";

View File

@ -1,3 +0,0 @@
h1.term {
color: $accent;
}

View File

@ -1,9 +1,22 @@
.terms { .terms {
h1 {
color: $accent;
}
h3 { h3 {
font-size: initial; font-size: initial;
} }
ul {
list-style: none;
li {
a {
color: $accent;
}
}
li:not(:empty):before {
content: '-';
position: absolute;
left: -20px;
color: $accent;
}
}
} }

View File

@ -21,14 +21,14 @@
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ if .Date }} {{- if .Date -}}
<time class="post-date"> <time class="post-date">
{{ .Date.Format "2006-01-02" }} :: {{- .Date.Format "2006-01-02" -}}
</time> </time>
{{ end }} {{- end -}}
{{ with .Params.Author }} {{- with .Params.Author -}}
<span class="post-author">{{ . }}</span> <span class="post-author">{{ . }}</span>
{{ end }} {{- end -}}
</div> </div>
{{ if .Params.tags }} {{ if .Params.tags }}

View File

@ -11,14 +11,14 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ if .Date }} {{- if .Date -}}
<time class="post-date"> <time class="post-date">
{{ .Date.Format "2006-01-02" }} {{- .Date.Format "2006-01-02" -}}
</time> </time>
{{ end }} {{- end -}}
{{ with .Params.Author }} {{- with .Params.Author -}}
:: <span class="post-author">{{ . }}</span> <span class="post-author">{{- . -}}</span>
{{ end }} {{- end -}}
</div> </div>
{{ if .Params.tags }} {{ if .Params.tags }}

View File

@ -4,20 +4,20 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ if .Date }} {{- if .Date -}}
<time class="post-date"> <time class="post-date">
{{ .Date.Format "2006-01-02" }} {{- .Date.Format "2006-01-02" -}}
{{ if $.Site.Params.showLastUpdated }} {{- if $.Site.Params.showLastUpdated -}}
:: [{{or $.Site.Params.updatedDatePrefix "Updated"}} :: {{ .Lastmod.Format "2006-01-02" }}] [{{- or $.Site.Params.updatedDatePrefix "Updated" -}} :: {{- .Lastmod.Format "2006-01-02" -}}]
{{ end }} {{- end -}}
</time> </time>
{{ end }} {{- end -}}
{{ with .Params.Author }} {{- with .Params.Author -}}
<span class="post-author"> :: {{ . }}</span> <span class="post-author">{{ . }}</span>
{{ end }} {{- end -}}
{{ if and (.Param "readingTime") (eq (.Param "readingTime") true) }} {{- if and (.Param "readingTime") (eq (.Param "readingTime") true) -}}
<span class="post-reading-time">:: {{ .ReadingTime }} {{ $.Site.Params.minuteReadingTime | default "min read" }} ({{ .WordCount }} {{ $.Site.Params.words | default "words" }})</span> <span class="post-reading-time">{{ .ReadingTime }} {{ $.Site.Params.minuteReadingTime | default "min read" }} ({{ .WordCount }} {{ $.Site.Params.words | default "words" }})</span>
{{ end }} {{- end -}}
</div> </div>
{{ if .Params.tags }} {{ if .Params.tags }}

View File

@ -1,5 +1,5 @@
{{ define "main" }} {{ define "main" }}
<h1 class="term">{{ .Title }}</h1> <h1>Posts for: #{{ .Title }}</h1>
{{ with .Content }} {{ with .Content }}
<div class="index-content"> <div class="index-content">
{{ . }} {{ . }}
@ -12,14 +12,14 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{ if .Date }} {{- if .Date -}}
<time class="post-date"> <time class="post-date">
{{ .Date.Format "2006-01-02" }} {{- .Date.Format "2006-01-02" -}}
</time> </time>
{{ end }} {{- end -}}
{{ with .Params.Author }} {{- with .Params.Author -}}
<span class="post-author"> :: {{ . }}</span> <span class="post-author">{{- . -}}</span>
{{ end }} {{- end -}}
</div> </div>
{{ if .Params.tags }} {{ if .Params.tags }}

View File

@ -2,9 +2,9 @@
<div class="terms"> <div class="terms">
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
{{ with .Content }} {{ with .Content }}
<div class="index-content"> <div class="index-content">
{{ . }} {{ . }}
</div> </div>
{{ end }} {{ end }}
<ul> <ul>
{{ $type := .Type }} {{ $type := .Type }}
@ -13,7 +13,7 @@
{{ $count := .Count }} {{ $count := .Count }}
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }} {{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
<li> <li>
<a class="terms-title" href="{{ .Permalink }}">{{ .Name }} ({{ $count }})</a> <a class="terms-title" href="{{ .Permalink }}">{{ .Name }} [{{ $count }}]</a>
</li> </li>
{{ end }} {{ end }}
{{ end }} {{ end }}