diff --git a/assets/scss/colors.scss b/assets/scss/colors.scss index 6660277..b6360a0 100644 --- a/assets/scss/colors.scss +++ b/assets/scss/colors.scss @@ -46,11 +46,9 @@ a.footer-nav-item:hover { &.light { color: $light-bg-alt; background-color: $light-bg; - border-color: $light-bg; } color: $dark-bg-alt; background-color: $dark-bg; - border-color: $dark-bg; transition: $trans-short; } diff --git a/assets/scss/font.scss b/assets/scss/font.scss index 4d53277..d33f27f 100644 --- a/assets/scss/font.scss +++ b/assets/scss/font.scss @@ -19,6 +19,12 @@ $small: 12pt; font-size: $small; } +p, +.postdescription, +ul { + line-height: 2em; +} + h1{ font-size: $huge; } diff --git a/assets/scss/layout.scss b/assets/scss/layout.scss index d346ac1..502bf22 100644 --- a/assets/scss/layout.scss +++ b/assets/scss/layout.scss @@ -93,6 +93,10 @@ p code{ align-items: center; } +.postinfo { + text-align: right; +} + h1, h2, h3, @@ -106,6 +110,7 @@ h6 { justify-content: right; display: flex; align-items: center; + text-align: right; } h2, @@ -121,6 +126,7 @@ article { margin-inline: auto; } + .titlecontainer, header{ width: 100%; diff --git a/assets/scss/style.scss b/assets/scss/style.scss index 3d82cf1..8a1999d 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -4,7 +4,6 @@ $toggle-height: 24pt; * { border-width: 2pt; - transition: ease-in-out; } input[type="checkbox"] { @@ -93,3 +92,10 @@ h6 { border-width: 0.24em; padding-left: 2em; } + +p a, +.postdescription a, +ul a{ + border-style: solid; + padding: 0.12em; +} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 56a37f8..5e380c9 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -12,7 +12,8 @@ {{ range .Pages }}

- {{.Title}}

{{.Description}}
{{.WordCount}} words
+ {{.Title}} {{ end }}
diff --git a/layouts/index.html b/layouts/index.html index aa3ebdb..7bfd51d 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,10 +1,10 @@ {{ define "main" }} -
-

{{ .Site.Title }}

-
-
+
+

{{ .Site.Title }}

+
+

{{ .Content }}

-
+ {{ end }}