From aa7f2ee192d7616342a3cdc4513074d8489e8ab9 Mon Sep 17 00:00:00 2001 From: savnkr <147591398+savnkr@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:40:25 +0000 Subject: [PATCH] bb --- assets/css/custom.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/assets/css/custom.css b/assets/css/custom.css index e69de29..403390a 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -0,0 +1,21 @@ +/* Apply global font settings */ +body { + font-family: 'Roboto', sans-serif; /* Change to your preferred font */ + font-size: 14px; /* Adjust font size */ + line-height: 1.6; /* Improve readability */ +} + +/* Style for blog post titles */ +h1, h2, h3, h4, h5, h6 { + font-family: 'Roboto', sans-serif; /* Ensure headings use the same font */ + font-size: 20px; /* Adjust heading size */ + font-weight: bold; /* Make headings bold */ +} + +/* Style for blog post content */ +.post-content, .post-body, .blog-content { + font-family: 'Roboto', sans-serif; + font-size: 14px; /* Font size for blog content */ + line-height: 1.8; /* Better spacing for readability */ + color: #333; /* Set text color */ +}