From 3ccaed5b1ec5d9693fbcaf3c803768260c79abb7 Mon Sep 17 00:00:00 2001 From: smallxu038 <47671569+smallxu038@users.noreply.github.com> Date: Mon, 19 Feb 2024 23:58:45 +0800 Subject: [PATCH] Add mCAPTCHA Background --- style.css | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 83cb3b8..a151c2c 100644 --- a/style.css +++ b/style.css @@ -8815,4 +8815,34 @@ h1[id*=toc-head]::before,h2[id*=toc-head]::before,h3[id*=toc-head]::before,h4[id } .bangumi-next i { color: orange; -} \ No newline at end of file +} +/* +mCAPTCHA +*/ +#mcaptcha__widget-container { + height: 80px; + width: 80%; + background-color: #F9F9F9; + border-radius: 5px; + box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); +} + +@media (prefers-color-scheme: dark) { + #mcaptcha__widget-container { + height: 80px; + width: 80%; + background-color: #505050; + border-radius: 5px; + box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); + } +} + +@media (prefers-color-scheme: light) { + #mcaptcha__widget-container { + height: 80px; + width: 80%; + background-color: #F9F9F9; + border-radius: 5px; + box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); + } +}