added support for bold and italicized text

This commit is contained in:
Sasserisop 2023-10-13 22:55:26 -06:00
parent 586e7e902b
commit d09f074570
2 changed files with 10 additions and 4 deletions

View File

@ -136,10 +136,12 @@ ol li:before {
margin-right: 0.5em; } margin-right: 0.5em; }
b, strong { b, strong {
font-family: "AvenirNext-Bold"; } font-family: "Menlo-Regular";
font-weight: bold; }
i, em { i, em {
font-family: "AvenirNext-Italic"; } font-family: "Menlo-Regular";
font-style: italic; }
code { code {
font-family: "Menlo-Regular"; } font-family: "Menlo-Regular"; }

View File

@ -164,11 +164,15 @@ ol li:before {
} }
b, strong { b, strong {
font-family: "AvenirNext-Bold" //font-family: "AvenirNext-Bold";
font-family: "Menlo-Regular";
font-weight: bold;
} }
i, em { i, em {
font-family: "AvenirNext-Italic" //font-family: "AvenirNext-Italic";
font-family: "Menlo-Regular";
font-style: italic;
} }
code { code {