aboutsummaryrefslogtreecommitdiff
path: root/src/app/globals.css
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-08 14:19:32 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-08 14:19:32 +0200
commit67eb91ad6dccf2a14e3f8d3b285c75d251322973 (patch)
tree648fc2de5568ef8f541e6c7033e3c1a0a953a92e /src/app/globals.css
parent3f513363524c7cfd9d7fb573454090d2ba01bda9 (diff)
downloadinvoice-67eb91ad6dccf2a14e3f8d3b285c75d251322973.tar.gz
invoice-67eb91ad6dccf2a14e3f8d3b285c75d251322973.zip
feat(blogs): implement blogging functionality
- Implement static blog generation from markdown files
Diffstat (limited to 'src/app/globals.css')
-rw-r--r--src/app/globals.css29
1 files changed, 29 insertions, 0 deletions
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;
+}