-
Notifications
You must be signed in to change notification settings - Fork 21
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
1 parent
9758242
commit b0b5f8b
Showing
3 changed files
with
52 additions
and
1 deletion.
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
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
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,49 @@ | ||
html { | ||
font-size: 40%; /* Adjust this percentage to scale all font sizes */ | ||
} | ||
|
||
/* Target the specific note classes */ | ||
.admonition.note p, | ||
.admonition.warning p, | ||
.admonition.tip p, | ||
.admonition.info p { | ||
font-size: 1.2rem !important; /* Adjust size as needed */ | ||
} | ||
|
||
/* Additional targeting, if needed */ | ||
.note p, .warning p, .tip p, .info p { | ||
font-size: 2.2rem !important; | ||
} | ||
|
||
code { | ||
font-size: 1.8rem !important; /* Adjust size as needed */ | ||
} | ||
|
||
/* General heading font size increases */ | ||
h1 { | ||
font-size: 3rem !important; /* Adjust for h1 */ | ||
} | ||
|
||
h2 { | ||
font-size: 3rem !important; /* Adjust for h2 */ | ||
} | ||
|
||
h3 { | ||
font-size: 3rem !important; /* Adjust for h3 */ | ||
} | ||
|
||
h4 { | ||
font-size: 3rem !important; /* Adjust for h4 */ | ||
} | ||
|
||
h5 { | ||
font-size: 2rem !important; /* Adjust for h5 */ | ||
} | ||
|
||
h6 { | ||
font-size: 2rem !important; /* Adjust for h6 */ | ||
} | ||
|
||
.page-title { | ||
font-size: 4rem !important; | ||
} |