UNPKG

471 BCSSView Raw
1
2/**
3 * https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/
4 *
5 * - Segoe UI before system-ui (system-ui is Microsoft YaHei UI in Win10 in Simplified Chinese)
6 */
7
8body {
9 font-family:
10 "Segoe UI",
11 system-ui,
12 -apple-system,
13 Oxygen, /* KDE */
14 Cantarell, /* GNOME */
15 Ubuntu,
16 Roboto,
17 "Droid Sans",
18 "Helvetica Neue", /* macOS versions < 10.11 */
19 sans-serif;
20 /* Apple Color Emoji, Segoe UI Emoji; */
21}
22