b7a5f4f266
This PR switches the default font for Inter to provide a much more reliable typography across various OS's and for better integration with the Ghost brand.
45 lines
766 B
CSS
45 lines
766 B
CSS
.sans-serif {
|
|
font-family: "Inter", -apple-system, BlinkMacSystemFont,
|
|
'avenir next', avenir,
|
|
'helvetica neue', helvetica,
|
|
ubuntu,
|
|
roboto, noto,
|
|
'segoe ui', arial,
|
|
sans-serif;
|
|
}
|
|
|
|
.serif {
|
|
font-family: georgia,
|
|
serif;
|
|
}
|
|
|
|
.system-sans-serif {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.system-serif {
|
|
font-family: serif;
|
|
}
|
|
|
|
|
|
/* Monospaced Typefaces (for code) */
|
|
|
|
/* From http://cssfontstack.com */
|
|
code, .code {
|
|
font-family: monospace,monospace;
|
|
}
|
|
|
|
.courier {
|
|
font-family: 'Courier Next',
|
|
courier,
|
|
monospace;
|
|
}
|
|
|
|
|
|
/* Sans-Serif Typefaces */
|
|
|
|
.whitney {
|
|
font-family: "Whitney SSm A", "Whitney SSm B",
|
|
sans-serif;
|
|
}
|