diff options
| author | Stefan Kangas <stefan@marxist.se> | 2021-04-20 15:29:19 +0200 |
|---|---|---|
| committer | Stefan Kangas <stefan@marxist.se> | 2021-04-20 15:35:22 +0200 |
| commit | a92847686fa76227dfb2e4f5170d43b7347f8de9 (patch) | |
| tree | b1014029b6ed8b9ece33170dcccb01465c8955ed /html/layout.css | |
| parent | 9db9b0d0c541b98f0c14f11070ef8c37c1ef5bcb (diff) | |
Minor CSS font-family fixes (Bug#47671)
* html/layout.css (body, tt, code, pre): Fix font-family.
Suggested by Sebastian Urban <mrsebastianurban@gmail.com>.
Diffstat (limited to 'html/layout.css')
| -rw-r--r-- | html/layout.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/html/layout.css b/html/layout.css index eb38ee9..b230937 100644 --- a/html/layout.css +++ b/html/layout.css @@ -47,7 +47,7 @@ table { /* End of reset */ body { - font-family: "fira sans", sans; + font-family: "fira sans", sans-serif; line-height: 1.5em; font-size: 1.2em; color: #333; @@ -92,6 +92,7 @@ a:hover { } tt, code { + font-family: "Fira Mono", monospace; background-color: rgb(238, 238, 238); border: 1px solid rgb(187, 187, 187); padding: 0px 6px; @@ -99,7 +100,7 @@ tt, code { } pre { - font-family: "Fira Mono"; + font-family: "Fira Mono", monospace; font-size: 14px; background: #fafafa; padding: 15px; |
