diff --git a/dist/extended.css b/dist/extended.css index 8ce0472..81decc1 100644 --- a/dist/extended.css +++ b/dist/extended.css @@ -11,13 +11,19 @@ gap: 4rem; list-style: circle; background: var(--menu-bg-color); - transition: top .3s ease-in-out; + transition: all .3s ease-in-out; } #main-menu > li { padding: 0; } body>header.small + #main-menu { - top: calc(var(--header-height) * var(--header-multiplier)); + top: calc(var(--header-height-small) + 2rem); + height: 14rem; + width: 6rem; + flex-flow: column nowrap; + gap: .5rem; + align-items: stretch; + padding: 0 1rem; } pre { background: var(--emboss-color); diff --git a/dist/index.html b/dist/index.html index aed241c..3042acb 100644 --- a/dist/index.html +++ b/dist/index.html @@ -3,7 +3,7 @@ - + Norman Köhring // the codeartist — programmer and engineer based in Berlin diff --git a/dist/mail.svg b/dist/mail.svg index d812e12..439b6d7 100644 --- a/dist/mail.svg +++ b/dist/mail.svg @@ -1 +1,2 @@ + diff --git a/dist/now/index.html b/dist/now/index.html index 34e9998..3a06e75 100644 --- a/dist/now/index.html +++ b/dist/now/index.html @@ -3,7 +3,7 @@ - + /now // the codeartist — programmer and engineer based in Berlin @@ -31,11 +31,14 @@ -
-
Now -- What I'm up to right now
+
+
+

Now -- What I'm up to right now

+

This page shows what I'm up to at the moment, following the idea of the /now page introduced by Derek Sivers. You can find more now pages on nownownow.

Last updated: 2024-05-12

+

Still live in Berlin where I am working fully remote. I'm appproaching the second anniversary at Code Gaia now and have no plans to change any of it.

Priorities

I do a lot of things all the time and have a hard time to focus. Most of my energy right now hopefully flows into the following things:

@@ -43,6 +46,7 @@
  • This homepage.
  • Keeping up the pace professionally by taking up more management responsibilities.
  • +
  • Ramping up my side-project game (mainly by doing smaller freelancing jobs).
  • Fleshing out a long form D&D campaign ("Out Of The Cold Shadow").
  • Writing down more short adventures and one-shots and publish them on tiskifer.dk.
  • My wedding and honeymoon in June!
  • @@ -94,6 +98,6 @@ by Camille
  • /setup
  • - + diff --git a/dist/posts.css b/dist/posts.css new file mode 100644 index 0000000..4bfaf00 --- /dev/null +++ b/dist/posts.css @@ -0,0 +1,17 @@ +main.posts { + margin: calc(var(--header-height-small) + 2rem) auto 4rem; +} +main.posts > #content > h1 { + padding: 0; +} + +main.posts article { + margin: 1rem 0; +} +main.posts article>div { + line-height: 2; +} +main.posts article>time, +main.posts article>div>a.external { + color: gray; +} diff --git a/dist/style.css b/dist/style.css index 1ad41bf..3f27c1e 100644 --- a/dist/style.css +++ b/dist/style.css @@ -3,6 +3,7 @@ --header-fg-color: #a3bd8d; --header-height: 192px; --header-multiplier: .25; + --header-height-small: calc(var(--header-height)*var(--header-multiplier)); --page-bg-color: #232425; --page-fg-color: #7e9fbe; --menu-bg-color: #000; @@ -62,7 +63,7 @@ body>header { } body>#spacer { - height: calc(var(--header-height) * var(--header-multiplier)); + height: var(--header-height-small); } body>header { @@ -87,7 +88,7 @@ body>header>svg { body>main { width: 960px; max-width: 98vw; - margin: var(--header-height) auto 4em; + margin: var(--header-height) auto 4rem; } a { @@ -101,14 +102,17 @@ a { margin: 2rem 0; } -#content>h1 { +#content>h1, +main.posts > header > h1 { margin: 0 0 .25em; - padding-top: 2em; font-size: 2rem; font-variant: small-caps; text-shadow: 1px 1px 0 var(--emboss-color); color: var(--header-fg-color); } +#content>h1 { + padding-top: 2em; +} #menu { display: flex; diff --git a/dist/til.css b/dist/til.css deleted file mode 100644 index fd532b5..0000000 --- a/dist/til.css +++ /dev/null @@ -1,15 +0,0 @@ -main#til > header { - margin: 0 0 2rem 0; - font-size: 1.5em; -} - -article.til { - margin: 1rem 0; -} -article.til>div { - line-height: 2; -} -article.til>time, -article.til>div>a.external { - color: gray; -} diff --git a/dist/til/2021-08-31.html b/dist/til/2021-08-31.html index bac7854..4e30ab6 100644 --- a/dist/til/2021-08-31.html +++ b/dist/til/2021-08-31.html @@ -3,7 +3,7 @@ - + Today I learned // the codeartist — programmer and engineer based in Berlin @@ -31,14 +31,14 @@ -
    -
    TIL -- Today I learned
    +
    +
    +

    TIL -- Today I learned

    +

    There is a HTML tag for "Word Break Opportunity"

    source

    For example: Kauf<wbr/>haus.

    - - back