mirror of
https://bjh21.me.uk/bedstead/.git
synced 2026-07-09 21:43:06 -04:00
19 lines
447 B
CSS
19 lines
447 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: "palt" off;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Bedstead;
|
|
src: url(bedstead.otf) format("opentype");
|
|
}
|