Update status.htm

This commit is contained in:
Bard 2023-02-19 08:39:05 +08:00 committed by GitHub
parent 50b7fa87ce
commit fc1e4b5f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,20 +64,20 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
.block h4 { .block h4 {
background-image: none; background-image: none;
background-color: #131b33; background-color: #2c323c;
} }
.block.pure-g { .block.pure-g {
background: #0a0f17; background: #444950;
box-shadow: unset; box-shadow: unset;
} }
} }
<% if mode == 'dark' then %> <% if mode == 'dark' then %>
.block h4 { .block h4 {
background-image: none; background-image: none;
background-color: #444950; background-color: #2c323c;
} }
.block.pure-g { .block.pure-g {
background: #0000; background: #444950;
box-shadow: unset; box-shadow: unset;
} }
<% end -%> <% end -%>