From c1c31a58cae1399bf5f0085057b1f70fb28ffd70 Mon Sep 17 00:00:00 2001 From: gmt4 <791491+gmt4@users.noreply.github.com> Date: Thu, 3 Oct 2024 03:17:49 +0200 Subject: [PATCH] extras: Update extras/mpvc-web --- extras/mpvc-web | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extras/mpvc-web b/extras/mpvc-web index f6759c87..43fa02f8 100755 --- a/extras/mpvc-web +++ b/extras/mpvc-web @@ -92,15 +92,15 @@ mpvc_web_style() cat <<-EOF :root { --body-font-family: monospace; --body-color: #222; --body-background: #fff; --link-color: #a0a; } @media (max-width: 768px) { :root { --body-font-size: 1.06em; } } -@media (min-width: 768px) { :root { --body-font-size: 1.20em; } } +@media (min-width: 768px) { :root { --body-font-size: 1.10em; } } @media (prefers-color-scheme: light) { html { filter: invert(0.0); } :root { } } @media (prefers-color-scheme: dark) { html { filter: invert(0.85); } :root { } } html { font-family: var(--body-font-family); font-size: var(--body-font-size); } body { font-family: var(--body-font-family); font-size: var(--body-font-size); color: var(--body-color); background: var(--body-background); } -select { width: 95%; font-family: font-size: var(--body-font-size); } -input { width: 95%; font-family: font-size: var(--body-font-size); } +select { width: 95%; font-family: var(--body-font-family); font-size: var(--body-font-size); } +input { width: 95%; font-family: var(--body-font-family); font-size: var(--body-font-size); } ul { padding: 0rem 0.8rem; } a { padding: 0.08rem 0.02rem; color: var(--link-color); }