From 98920f8ea2d62a4c70a3bb9d5e30864a028a4de3 Mon Sep 17 00:00:00 2001 From: ewy Date: Thu, 23 Apr 2026 02:00:33 +0200 Subject: changes.. --- entry/theme/index.html | 7 +-- index.html | 143 ++++++++++++++++++++++++++++--------------------- terminal.css | 80 +++++++++++++-------------- 3 files changed, 126 insertions(+), 104 deletions(-) diff --git a/entry/theme/index.html b/entry/theme/index.html index 012c6ff..b108dab 100644 --- a/entry/theme/index.html +++ b/entry/theme/index.html @@ -17,12 +17,9 @@

- Here is my homebrew color palette. The goal is to incorporate beautiful pastel - colors in a high-contrast, fuzzy medley. - I will eventually update this page with more information, but for now here's a - color table. + Here's the color table.

-
+
Color scheme diff --git a/index.html b/index.html index ddf7ac3..dfd92eb 100644 --- a/index.html +++ b/index.html @@ -1,69 +1,92 @@ - Blog | ewy.one - + ewy.one + - - - - + + + + -

Ewy's thoughts.

- -

Reach me at: ZXdvdXRAZXd5Lm9uZQ==

+
+

ewy.one

+
+
+
+

projects

+
    +
  • delayed.link

    + Share time-locked links. The anticipation makes the receiving more meaningful. +
  • +
  • pik

    + File-based task runner. Smart target invocation, memory and a TUI for when you get lost. +
  • +
+
+
+

"blog"

+ +
+
+ diff --git a/terminal.css b/terminal.css index d3d4db5..7788263 100644 --- a/terminal.css +++ b/terminal.css @@ -12,63 +12,65 @@ --white: rgb(254, 252, 248); } -body { - max-width: min(80%, 500px); +html { background-color: var(--background); color: var(--foreground); - font-family: monospace; - padding: 32px; - margin: 0 auto 0 auto; - font-size: 1.2em; - font-weight: 300; } -main * { - margin: 16px 0; -} +body { + display: flex; + flex-direction: column; + gap: 32px; + padding-top: 32px; + max-width: 40em; + margin: auto; + font-family: monospace; + font-size: 1.2em; + min-height: 120vh; -main * * { - margin: 0; -} + & main { + display: flex; + flex-direction: column; + gap: 32px; + } -a { - color: var(--blue); - text-decoration: dashed underline; - font-style: italic; + & footer { + padding-bottom: 64px; + } } -a time { +.fakelink { color: var(--foreground); - opacity: 0.8; - display: block; - font-size: 0.9em; - font-style: normal; - text-decoration: none !important; -} - -aside { - border: 1px var(--black); - border-style: solid none; - margin: 1em; - padding: 0.2em; - text-align: center; + text-decoration: none; } -summary { - border-bottom: 0; +a { + color: var(--blue); + &:visited { + color: var(--magenta); + } } ul { list-style: none; - padding: 0; -} + display: flex; + flex-direction: column; + gap: 16px; + + & li, a { + display: flex; + flex-direction: column; -ul * { - margin-top: 1em; + & time { + opacity: 0.5; + } + } } -footer { - margin-bottom: 32px; +section { + & h2 { + padding-bottom: 4px; + } } .fg-black { -- cgit v1.3.1