diff options
author | Chris Xiong <chirs241097@gmail.com> | 2024-08-04 17:59:50 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2024-08-04 17:59:50 -0400 |
commit | 04bdab58f3dcacfa22a1d585751c17b94e7bc18a (patch) | |
tree | 5556475f8ca7f674d2b6b4ee5837674b49f035b5 | |
parent | 586d2648471b18a73277d6a3c7f598d0d721d128 (diff) | |
download | web-04bdab58f3dcacfa22a1d585751c17b94e7bc18a.tar.xz |
Consistent font usage.
-rw-r--r-- | common.css | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -69,7 +69,7 @@ button{ text-align:center; -webkit-transition-duration:0.4s; transition-duration:0.4s; - font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; font-variant-ligatures: none; } input[type="text"]{ @@ -77,13 +77,15 @@ input[type="text"]{ border-bottom: 2px solid; outline: none !important; background-color: rgba(0,0,0,0) !important; - font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; font-variant-ligatures: none; } textarea{ border:2px solid; outline:none !important; background-color:rgba(0,0,0,0) !important; + font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace; + font-variant-ligatures: none; } body{ background-color: var(--principal-bg); |