From 67eb91ad6dccf2a14e3f8d3b285c75d251322973 Mon Sep 17 00:00:00 2001 From: mihna123 Date: Mon, 8 Jun 2026 14:19:32 +0200 Subject: feat(blogs): implement blogging functionality - Implement static blog generation from markdown files --- src/app/globals.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src/app/globals.css') diff --git a/src/app/globals.css b/src/app/globals.css index eb0ee21..ff84294 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -17,3 +17,32 @@ body { color: var(--foreground); font-family: Arial, Helvetica, sans-serif; } + +.link, +.markdown a { + @apply text-blue-900 underline hover:bg-blue-900 hover:text-white; +} + +.markdown { + @apply space-y-4 text-lg leading-relaxed; +} + +.markdown h1 { + @apply text-3xl font-bold; +} + +.markdown h2 { + @apply text-2xl font-semibold; +} + +.markdown h3 { + @apply text-xl font-semibold; +} + +.markdown ul { + @apply list-disc pl-8; +} + +.markdown ol { + @apply list-decimal pl-8; +} -- cgit v1.3.1