bedstead/bedstead.css
Ben Harris 1c39b2bbd1 CSS: Add font-synthesis: none.
Otherwise, Firefox synthesises Bedstead Bold when I use <h2>.
2017-06-25 20:59:33 +01:00

20 lines
465 B
CSS

/* Trivial stylesheet to use Bedstead everywhere. */
/* Use Bedstead with proportional spacing for everything. */
body {
font-family: Bedstead;
font-feature-settings: "palt";
font-synthesis: none;
}
/* Except where it's conventional to use a monospaced version. */
kbd, code, tt, pre {
font-family: Bedstead, monospace;
font-feature-settings: normal;
}
@font-face {
font-family: Bedstead;
src: url(bedstead.otf) format("opentype");
}