forked from gravitystorm/openstreetmap-carto
-
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
3 changed files
with
62 additions
and
36 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
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,29 @@ | ||
/* | ||
3. Fallback fonts: | ||
Hanazono covers almost all CJK characters, even in Unicode Plane 2. | ||
*/ | ||
|
||
/* Use vendored fonts. This allows for more recent versions and better coverage */ | ||
Map { | ||
font-directory: url('fonts'); | ||
} | ||
|
||
/* | ||
A regular style. | ||
*/ | ||
@book-fonts: "Gillius ADF Regular", | ||
"HanaMinA Regular", "HanaMinB Regular"; | ||
|
||
/* | ||
Bold text is heavier than regular text and can be used for emphasis. Fallback is a regular style. | ||
*/ | ||
@bold-fonts: "Gillius ADF Bold", | ||
@book-fonts; | ||
|
||
/* | ||
Italics are only available for the (Latin-Greek-Cyrillic) base font, not the other scripts. | ||
For a considerable number of labels this style will make no difference to the regular style. | ||
*/ | ||
@oblique-fonts: "Gillius ADF Italic", @book-fonts; |