diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-27 19:39:13 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-27 19:39:13 -0400 |
| commit | c4b30850dc65b62eaf11931b439386c903d45e04 (patch) | |
| tree | fdbc375b75b0da794ee4f74174131c535df359dc /css | |
| parent | 1d8c982f0b1b285e2609d2b15065d4512dcafe9b (diff) | |
Use Knuth's Concrete Roman font
Diffstat (limited to 'css')
| -rw-r--r-- | css/fonts.css | 40 | ||||
| -rw-r--r-- | css/jakob.css | 6 |
2 files changed, 15 insertions, 31 deletions
diff --git a/css/fonts.css b/css/fonts.css index b622993..0c9fe45 100644 --- a/css/fonts.css +++ b/css/fonts.css @@ -1,46 +1,30 @@ -/* Linux Libertine */ +/* Concrete Roman */ @font-face { - font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_R.woff'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_RI.woff'); - font-weight: normal; - font-style: italic; -} - -@font-face { - font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_RB.woff'); + font-family: 'Concrete Roman'; + src: url('/fonts/cmunobx.woff'); font-weight: bold; font-style: normal; } -/* Linux Biolinum */ - @font-face { - font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-r-subset.woff'); - font-weight: normal; - font-style: normal; + font-family: 'Concrete Roman'; + src: url('/fonts/cmunobi.woff'); + font-weight: bold; + font-style: italic; } @font-face { - font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-ri-subset.woff'); + font-family: 'Concrete Roman'; + src: url('/fonts/cmunoti.woff'); font-weight: normal; font-style: italic; } @font-face { - font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-rb-subset.woff'); - font-weight: bold; + font-family: 'Concrete Roman'; + src: url('/fonts/cmunorm.woff'); + font-weight: normal; font-style: normal; } diff --git a/css/jakob.css b/css/jakob.css index 40e63e7..c6a7b4f 100644 --- a/css/jakob.css +++ b/css/jakob.css @@ -2,13 +2,13 @@ body { color: #000; background-color: #fbfbfb; font-size: 24px; - font-family: 'Linux Libertine',serif; + font-family: 'Concrete Roman',serif; line-height: 140%; text-rendering: optimizeLegibility; } h1, h2, h3 { - font-family: 'Linux Biolinum',sans; + font-family: 'Concrete Roman',sans; } h1 { @@ -77,7 +77,7 @@ footer { /* Navigation */ .nav { - font-family: 'Linux Biolinum',sans; + font-family: 'Concrete Roman',sans; padding-top: 1rem; padding-bottom: 1rem; margin-bottom: 3rem; |