Add mCAPTCHA Background

This commit is contained in:
smallxu038 2024-02-19 23:58:45 +08:00 committed by GitHub
parent cca0903a24
commit 3ccaed5b1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}
}
/*
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);
}
}