bedstead/bedstead.css
Ben Harris 7f184003e7 CSS: use "normal" rather than explicitly disabling "palt".
This makes it clearer that the whole of font-feature-settings is
overridden.
2016-11-07 01:41:36 +00:00

19 lines
439 B
CSS

/* Trivial stylesheet to use Bedstead everywhere. */
/* Use Bedstead with proportional spacing for everything. */
body {
font-family: Bedstead;
font-feature-settings: "palt";
}
/* 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");
}