added support for bold and italicized text
This commit is contained in:
parent
586e7e902b
commit
d09f074570
|
@ -136,10 +136,12 @@ ol li:before {
|
|||
margin-right: 0.5em; }
|
||||
|
||||
b, strong {
|
||||
font-family: "AvenirNext-Bold"; }
|
||||
font-family: "Menlo-Regular";
|
||||
font-weight: bold; }
|
||||
|
||||
i, em {
|
||||
font-family: "AvenirNext-Italic"; }
|
||||
font-family: "Menlo-Regular";
|
||||
font-style: italic; }
|
||||
|
||||
code {
|
||||
font-family: "Menlo-Regular"; }
|
||||
|
|
|
@ -164,11 +164,15 @@ ol li:before {
|
|||
}
|
||||
|
||||
b, strong {
|
||||
font-family: "AvenirNext-Bold"
|
||||
//font-family: "AvenirNext-Bold";
|
||||
font-family: "Menlo-Regular";
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
i, em {
|
||||
font-family: "AvenirNext-Italic"
|
||||
//font-family: "AvenirNext-Italic";
|
||||
font-family: "Menlo-Regular";
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
code {
|
||||
|
|
Loading…
Reference in New Issue