From 6416a7cb1adb60c7dd142abb0204f3751ab36a1f Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Sun, 14 May 2023 17:57:10 -0400 Subject: tweak css, layouts, add new archetype --- assets/css/main.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index ba53a5e..75f2b9e 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,10 +1,10 @@ -body { - min-height: 100vh; -} - -main { - height: inherit; - display: flex; - flex-direction: column; - justify-content: stretch; +body { + min-height: 100vh; +} + +main { + height: inherit; + display: flex; + flex-direction: column; + justify-content: stretch; } \ No newline at end of file -- cgit v1.1 From e19ebe26ecd117a77c8fdda2e7667fca42160e1d Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Tue, 26 Sep 2023 22:06:05 -0400 Subject: stuff --- assets/css/main.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 75f2b9e..e49a669 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -7,4 +7,47 @@ main { display: flex; flex-direction: column; justify-content: stretch; +} + +footer { + background: #00000055; +} + +.flex { + display: flex; +} + +.flex.row { + flex-direction: row; +} + +.flex.col { + flex-direction: column; +} + +.footer-info { + width: 100%; + justify-content: center; +} + +.flex.footer-info { + gap: 1rem; +} + +.footer-info .flex.col { + min-width: 250px; +} + +footer { + position:relative; +} + +.copyright { + background: #00000055; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + padding: 1rem; + text-align: center; } \ No newline at end of file -- cgit v1.1 From b179606dac7cf36c490512146ad8ce898f7800b2 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Wed, 27 Sep 2023 21:50:42 -0400 Subject: theme tweaks --- assets/css/main.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index e49a669..934e91b 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -50,4 +50,8 @@ footer { width: 100%; padding: 1rem; text-align: center; -} \ No newline at end of file +} + +.post { + margin-bottom: 1em; +} -- cgit v1.1 From 81200fa6a598557f36593c950d7a63c52aa0b22f Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Fri, 29 Sep 2023 00:14:30 -0400 Subject: tweak styles --- assets/css/main.css | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 934e91b..792f1f6 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -42,16 +42,33 @@ footer { position:relative; } +.poweredby, .copyright { - background: #00000055; position: absolute; left: 0; - bottom: 0; width: 100%; padding: 1rem; text-align: center; } +.poweredby { + background: #00000055; + bottom: 0; + padding: .5rem; +} + +.copyright { + background: #00000022; + bottom: 50px; +} + .post { margin-bottom: 1em; } + +.wordmark { + font-size: 2em; + text-transform: uppercase; + font-weight: 600; +} + -- cgit v1.1 From 93a4ba55f2159e69aa1fcdaa1cf87c09e7455017 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Tue, 3 Oct 2023 23:44:31 -0400 Subject: add changelog, assets, new partial --- assets/css/main.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 792f1f6..97d1f73 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,3 +1,7 @@ +:fullscreen { + color: blue; +} + body { min-height: 100vh; } @@ -71,4 +75,4 @@ footer { text-transform: uppercase; font-weight: 600; } - + \ No newline at end of file -- cgit v1.1 From 4e30ae95eaf52a7f427bdf020d118f40e00ab291 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Mon, 9 Oct 2023 13:41:04 -0400 Subject: add some homemade svg, wpartials, and darkmode --- assets/css/main.css | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 97d1f73..a7d2bf8 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -17,6 +17,35 @@ footer { background: #00000055; } +.fixed { + position: fixed; + top: 0; +} + +#actions { + width: 100%; + padding: .5rem; +} + +#actions button:first-of-type { + margin-right: 1rem; +} + +#actions button { + background: transparent; + border: none; + width: fit-content; + padding: 0; +} + +#actions button:hover { + color:aquamarine !important; +} + +.aligned.right { + justify-content: flex-end; +} + .flex { display: flex; } @@ -25,6 +54,11 @@ footer { flex-direction: row; } +.centered { + align-items: center; + justify-content: center; +} + .flex.col { flex-direction: column; } @@ -75,4 +109,27 @@ footer { text-transform: uppercase; font-weight: 600; } - \ No newline at end of file + +.icon svg { + width: 1em; + height: 1em; + margin-right: .4em; +} + +.hide { + display: none; +} + +.icon:hover { + color: inherit !important; +} + +html[data-theme="dark"] .icon, +html[data-theme="dark"] #actions button { + color: white; +} + +html[data-theme="light"] .icon, +html[data-theme="light"] #actions button { + color: #24333e; +} \ No newline at end of file -- cgit v1.1 From d0e7f43601e90229b95191a1cdc85039e233b622 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Mon, 9 Oct 2023 21:08:24 -0400 Subject: add icons, refine styles, update layouts --- assets/css/main.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index a7d2bf8..af25dae 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -110,6 +110,12 @@ footer { font-weight: 600; } +.icon span { + display: inline-block; + width: fit-content; + height: fit-content; +} + .icon svg { width: 1em; height: 1em; -- cgit v1.1 From 6e6412e4a693ddc2da5e4611363fb882ad6497be Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Thu, 12 Oct 2023 08:08:37 -0400 Subject: Switch to light theme. remove articles. --- assets/css/main.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index af25dae..4574690 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -6,6 +6,18 @@ body { min-height: 100vh; } +body::-webkit-scrollbar { + display: none;; +} + +#content { + width: 65ch; +} + +#content::first-letter { + initial-letter: 2; +} + main { height: inherit; display: flex; -- cgit v1.1 From 2545016f8d6b63b0d857fc20fdd7276d2f0fc2a9 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Thu, 12 Oct 2023 23:40:26 -0400 Subject: Layout refinements. add config, disclaimer --- assets/css/main.css | 48 ++++++++++++------------------------------------ 1 file changed, 12 insertions(+), 36 deletions(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 4574690..c1aae11 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,7 +1,3 @@ -:fullscreen { - color: blue; -} - body { min-height: 100vh; } @@ -10,14 +6,6 @@ body::-webkit-scrollbar { display: none;; } -#content { - width: 65ch; -} - -#content::first-letter { - initial-letter: 2; -} - main { height: inherit; display: flex; @@ -25,10 +13,6 @@ main { justify-content: stretch; } -footer { - background: #00000055; -} - .fixed { position: fixed; top: 0; @@ -66,6 +50,14 @@ footer { flex-direction: row; } +.space-between { + justify-content: space-between; +} + +.align-end { + align-items: flex-end; +} + .centered { align-items: center; justify-content: center; @@ -80,6 +72,10 @@ footer { justify-content: center; } +.flex-end { + justify-content: flex-end; +} + .flex.footer-info { gap: 1rem; } @@ -92,26 +88,6 @@ footer { position:relative; } -.poweredby, -.copyright { - position: absolute; - left: 0; - width: 100%; - padding: 1rem; - text-align: center; -} - -.poweredby { - background: #00000055; - bottom: 0; - padding: .5rem; -} - -.copyright { - background: #00000022; - bottom: 50px; -} - .post { margin-bottom: 1em; } -- cgit v1.1 From cf6c17546bc40d41c169279ad7b8f60bf0888ab3 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Fri, 13 Oct 2023 21:26:24 -0400 Subject: new templates, and refinements --- assets/css/main.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index c1aae11..47cb5f5 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -126,4 +126,17 @@ html[data-theme="dark"] #actions button { html[data-theme="light"] .icon, html[data-theme="light"] #actions button { color: #24333e; -} \ No newline at end of file +} + +.pills { + margin-top: 1em; +} + +.pill { + background-color: #237fc0; + display: inline-block; + border-radius: .25em; + line-height: 1em; + padding: .5em .5em; + color: white; +} -- cgit v1.1 From 6bfd84ae2c7aad006c3bc84cdce9aebf894cbe62 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 20 Oct 2023 22:49:31 -0400 Subject: add summary for books --- assets/css/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'assets/css/main.css') diff --git a/assets/css/main.css b/assets/css/main.css index 47cb5f5..fff7794 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -84,6 +84,14 @@ main { min-width: 250px; } +.gap-1 { + gap: 1rem; +} + +.wrap { + flex-wrap: wrap; +} + footer { position:relative; } -- cgit v1.1