diff options
author | Chris Xiong <chirs241097@gmail.com> | 2024-08-04 18:15:49 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2024-08-04 18:15:49 -0400 |
commit | 4132d7280d054436df41373812ed2fb52651de33 (patch) | |
tree | 38e3a8dea05e217633ba2c1f6f8dda53218fdc46 /common.css | |
parent | 04bdab58f3dcacfa22a1d585751c17b94e7bc18a (diff) | |
download | web-4132d7280d054436df41373812ed2fb52651de33.tar.xz |
CSS consolidation.
Diffstat (limited to 'common.css')
-rw-r--r-- | common.css | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -79,6 +79,8 @@ input[type="text"]{ 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; + color: var(--principal-fg); + border-bottom-color: var(--interactive-bg); } textarea{ border:2px solid; @@ -86,6 +88,8 @@ textarea{ 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; + color: var(--principal-fg); + border-color: var(--interactive-bg); } body{ background-color: var(--principal-bg); @@ -141,14 +145,6 @@ button:active,.fakebtn:active{ button:disabled{ background-color: var(--interactive-disabled-bg); } -input[type="text"]{ - color: var(--principal-fg); - border-bottom-color: var(--interactive-bg); -} -textarea{ - color: var(--principal-fg); - border-color: var(--interactive-bg); -} .widgetbg{background-color: var(--widget-area-bg);} .sliderb1{background-color: var(--slider-empty-bg);} .sliderb2{background-color: var(--slider-filled-bg);} |