Compare commits

..

No commits in common. "b8901b68d750983f47b50274396a9296ccfb052a" and "c07edf99959142e11800f19c1670f927cb094f88" have entirely different histories.

6 changed files with 9 additions and 32 deletions

View file

@ -50,7 +50,7 @@ a.footer-nav-item:hover {
} }
color: $dark-bg-alt; color: $dark-bg-alt;
background-color: $dark-bg; background-color: $dark-bg;
border-color: $dark-bg; border-color: $dark-bg;
transition: $trans-short; transition: $trans-short;
} }
@ -86,14 +86,12 @@ footer a {
.togglelabel.light::after { .togglelabel.light::after {
background-color: $light-bg; background-color: $light-bg;
border-color: $light-bg;
color: $light-bg-alt; color: $light-bg-alt;
transition: $transition-time; transition: $transition-time;
} }
.togglelabel::after { .togglelabel::after {
background-color: $dark-bg; background-color: $dark-bg;
border-color: $dark-bg;
color: $dark-bg-alt; color: $dark-bg-alt;
transition: $transition-time; transition: $transition-time;
} }
@ -201,7 +199,6 @@ a:hover {
color: $dark-bg; color: $dark-bg;
background-color: $dark-ln; background-color: $dark-ln;
transition: $trans-short; transition: $trans-short;
border-color: $dark-ln;
} }
.previous.light:hover, .previous.light:hover,
@ -211,7 +208,6 @@ article.light a:hover {
color: $light-bg; color: $light-bg;
background-color: $light-ln; background-color: $light-ln;
transition: $trans-short; transition: $trans-short;
border-color: $light-ln;
} }
.light.hash-link:hover, .light.hash-link:hover,

View file

@ -19,12 +19,6 @@ $small: 12pt;
font-size: $small; font-size: $small;
} }
p,
.postdescription,
ul {
line-height: 2em;
}
h1{ h1{
font-size: $huge; font-size: $huge;
} }

View file

@ -7,7 +7,7 @@ body {
} }
footer { footer {
min-height: $footer-height; height: $footer-height;
position: sticky; position: sticky;
display: flex; display: flex;
align-items: center; align-items: center;
@ -93,10 +93,6 @@ p code{
align-items: center; align-items: center;
} }
.postinfo {
text-align: right;
}
h1, h1,
h2, h2,
h3, h3,
@ -110,7 +106,6 @@ h6 {
justify-content: right; justify-content: right;
display: flex; display: flex;
align-items: center; align-items: center;
text-align: right;
} }
h2, h2,
@ -126,7 +121,6 @@ article {
margin-inline: auto; margin-inline: auto;
} }
.titlecontainer, .titlecontainer,
header{ header{
width: 100%; width: 100%;

View file

@ -4,6 +4,7 @@ $toggle-height: 24pt;
* { * {
border-width: 2pt; border-width: 2pt;
transition: ease-in-out;
} }
input[type="checkbox"] { input[type="checkbox"] {
@ -92,10 +93,3 @@ h6 {
border-width: 0.24em; border-width: 0.24em;
padding-left: 2em; padding-left: 2em;
} }
p a,
.postdescription a,
ul a{
border-style: solid;
padding: 0.12em;
}

View file

@ -12,8 +12,7 @@
{{ range .Pages }} {{ range .Pages }}
<div id="postlist"> <div id="postlist">
<h2 class="colorswitch posttitle"> <h2 class="colorswitch posttitle">
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}</a><br> <a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}<br>{{.WordCount}} words</a>
<a class="postinfo colorswitch" href="{{.Permalink}}">read more...</a>
</div> </div>
{{ end }} {{ end }}
</div> </div>

View file

@ -1,10 +1,10 @@
{{ define "main" }} {{ define "main" }}
<header> <div>
<h1 id="title" class="colorswitch">{{ .Site.Title }}</h1> <h1 class="title">{{ .Site.Title }}</h1>
</header> </div>
<article id="content" class="colorswitch"> <div>
<p> <p>
{{ .Content }} {{ .Content }}
</p> </p>
</article> </div>
{{ end }} {{ end }}