generated from HugoBlox/theme-academic-cv
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 */ | ||
} |