diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-22 14:27:54 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-22 14:31:35 +0530 |
commit | a64f9d8f14762e341a851d0e211814958e044a64 (patch) | |
tree | b941070296f9b62a0a4314a6414f562e93d6a3a6 /static | |
parent | d6b8143f569c95bda9a1e5a494affed26b058ce6 (diff) | |
download | legit-a64f9d8f14762e341a851d0e211814958e044a64.tar.gz legit-a64f9d8f14762e341a851d0e211814958e044a64.tar.bz2 legit-a64f9d8f14762e341a851d0e211814958e044a64.zip |
css: set pre font
lol
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 4eb2332..deca77d 100644 --- a/static/style.css +++ b/static/style.css @@ -9,7 +9,7 @@ --sans-font: "InterVar", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; --display-font: "InterDisplay", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; - --mono-font: ui-monospace, "SF Mono", "Input", "Menlo" "Roboto Mono", monospace; + --mono-font: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace; } html { @@ -18,6 +18,10 @@ html { font-family: var(--sans-font); } +pre { + font-family: var(--mono-font); +} + ::selection { background: var(--medium-gray); opacity: 0.3; |