Compare commits

...

3 Commits

Author SHA1 Message Date
f4d4f4e5d7 Highlight cliked anchor on the page. 2022-01-01 20:12:50 -08:00
9b0c70ac05 Add RSS auto-discovery 2021-12-15 13:30:25 -08:00
fadf72c180 Update search to match new stork HTML 2021-12-03 00:34:58 -08:00
3 changed files with 13 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ input.stork-input {
}
}
.stork-title, .stork-excerpt {
.stork-title p, .stork-excerpt p {
margin: 0;
}

View File

@@ -21,6 +21,11 @@ h1, h2, h3, h4, h5, h6 {
font-weight: normal;
text-align: center;
&:target {
background-color: lighten(yellow, 30%);
border-radius: 1rem;
}
a {
border-bottom: none;
@@ -229,6 +234,10 @@ figure {
text-align: center;
}
&.fullwide img {
max-width: 100%;
}
&.tiny img {
max-height: 15rem;
}

View File

@@ -8,6 +8,9 @@
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Raleway&family=Lora&display=block" media="screen">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" media="screen">
{{ range .AlternativeOutputFormats -}}
<link rel="{{ .Rel }}" type="{{ .MediaType.Type | html }}" href="{{ .Permalink | safeURL }}">
{{ end -}}
{{ $style := resources.Get "scss/style.scss" | resources.ToCSS | resources.Minify }}
{{ $sidenotes := resources.Get "scss/sidenotes.scss" | resources.ToCSS | resources.Minify }}
{{ $code := resources.Get "scss/code.scss" | resources.ToCSS | resources.Minify }}