From b097ad035a089076b6cf1f1e9c7f648439d9b073 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Mon, 3 Jul 2023 01:38:05 +0200 Subject: Bunch of CSS improvements --- themes/simple/layouts/_default/list.html | 4 +- themes/simple/layouts/_default/notes.html | 4 +- themes/simple/layouts/partials/comments.html | 4 +- themes/simple/layouts/partials/navigation.html | 16 ++--- themes/simple/layouts/partials/read-more.html | 12 ++-- themes/simple/layouts/partials/side-projects.html | 71 +++++++++++++---------- themes/simple/layouts/tags/list.html | 2 +- themes/simple/openring/openring.html | 10 ++-- themes/simple/static/css/tailwind.css | 10 ++-- 9 files changed, 70 insertions(+), 63 deletions(-) (limited to 'themes/simple') diff --git a/themes/simple/layouts/_default/list.html b/themes/simple/layouts/_default/list.html index f92d9c0..6362b0f 100644 --- a/themes/simple/layouts/_default/list.html +++ b/themes/simple/layouts/_default/list.html @@ -22,8 +22,8 @@ {{ range (where .Site.RegularPages "Section" "posts") }}
- -

RSS feed + RSS feed which contains only the notes without the blog posts.

@@ -28,7 +28,7 @@
    {{ range .Site.Taxonomies.tags }}
  • - + {{ .Page.Title }}
  • diff --git a/themes/simple/layouts/partials/comments.html b/themes/simple/layouts/partials/comments.html index c87f1c6..50c28ca 100644 --- a/themes/simple/layouts/partials/comments.html +++ b/themes/simple/layouts/partials/comments.html @@ -3,7 +3,7 @@

    You can write me an email at - m@mitjafelicijan.com or catch up with me - on Telegram. + m@mitjafelicijan.com or catch up with me + on Telegram.

    diff --git a/themes/simple/layouts/partials/navigation.html b/themes/simple/layouts/partials/navigation.html index 44c6059..9c13fe5 100644 --- a/themes/simple/layouts/partials/navigation.html +++ b/themes/simple/layouts/partials/navigation.html @@ -1,7 +1,7 @@
    diff --git a/themes/simple/layouts/partials/read-more.html b/themes/simple/layouts/partials/read-more.html index a238017..9de1554 100644 --- a/themes/simple/layouts/partials/read-more.html +++ b/themes/simple/layouts/partials/read-more.html @@ -2,15 +2,15 @@

    Read more from this site

{{ end }} - + - \ No newline at end of file + diff --git a/themes/simple/layouts/partials/side-projects.html b/themes/simple/layouts/partials/side-projects.html index f675803..a2256e7 100644 --- a/themes/simple/layouts/partials/side-projects.html +++ b/themes/simple/layouts/partials/side-projects.html @@ -1,33 +1,40 @@
-

Side projects I worked on

- -
\ No newline at end of file +

Side projects I work/worked on

+ + + +

* For more projects, check out + my Git + server. Most of the projects there are probably work in progress and + should be considered as such.

+ + diff --git a/themes/simple/layouts/tags/list.html b/themes/simple/layouts/tags/list.html index 7917301..bd3bd57 100644 --- a/themes/simple/layouts/tags/list.html +++ b/themes/simple/layouts/tags/list.html @@ -15,7 +15,7 @@

Notes about things I learn, things I do, things I want to remember, but never do. You can subscribe to this - RSS feed + RSS feed which contains only the notes without the blog posts.

diff --git a/themes/simple/openring/openring.html b/themes/simple/openring/openring.html index 8bc92f5..2ed2a86 100644 --- a/themes/simple/openring/openring.html +++ b/themes/simple/openring/openring.html @@ -1,11 +1,11 @@

Articles from blogs I follow around the net

-
+
{{ range .Articles }} -
\ No newline at end of file +
diff --git a/themes/simple/static/css/tailwind.css b/themes/simple/static/css/tailwind.css index 7d04496..9de02d7 100644 --- a/themes/simple/static/css/tailwind.css +++ b/themes/simple/static/css/tailwind.css @@ -2,7 +2,7 @@ @tailwind components; @tailwind utilities; -/* * { cursor: url(/general/9front-cursor.png), auto; } */ +* { cursor: url(/general/9front-cursor.png), auto; } /* Container */ .container-blog { @@ -11,11 +11,11 @@ /* User text selection */ ::selection { - @apply bg-yellow-100 text-black; + @apply bg-yellow-200 text-black; } ::-moz-selection { - @apply bg-yellow-100 text-black; + @apply bg-yellow-200 text-black; } /* Helpers */ @@ -52,7 +52,7 @@ article.single p { /* Links */ article.single a { - @apply underline-offset-2 underline hover:bg-yellow-100; + @apply underline-offset-2 underline; } /* Blockquote */ @@ -94,7 +94,7 @@ article.single audio { /* Code */ article.single code { - @apply bg-yellow-100 rounded px-2 py-1 text-xs font-medium; + @apply bg-yellow-200 rounded px-2 py-1 text-xs font-medium; } article.single.note code { -- cgit v1.2.3