refactor(css): background-color to background

This commit is contained in:
curben 2019-09-04 06:26:24 +01:00
parent 32a76d0f6d
commit 19940eebcb
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 8 additions and 8 deletions

View File

@ -164,7 +164,7 @@ kbd,
pre, pre,
samp { samp {
font-size: 0.9em; font-size: 0.9em;
background-color: #d8d8d8; background: #d8d8d8;
} }
.article .article-entry blockquote footer cite a:hover, .article .article-entry blockquote footer cite a:hover,
@ -622,7 +622,7 @@ blockquote {
.dark .container, .dark .container,
.dark .footer { .dark .footer {
color: #e6e6e6; color: #e6e6e6;
background-color: #000; background: #000;
} }
.dark a:hover { .dark a:hover {
@ -642,7 +642,7 @@ blockquote {
.dark pre, .dark pre,
.dark samp { .dark samp {
font-size: 0.9em; font-size: 0.9em;
background-color: #333; background: #333;
} }
.dark table caption, .dark table caption,
@ -653,7 +653,7 @@ blockquote {
.dark .article-entry .highlight, .dark .article-entry .highlight,
.dark .article-entry pre { .dark .article-entry pre {
background-color: #333; background: #333;
} }
.dark .article-entry .highlight table caption, .dark .article-entry .highlight table caption,
@ -808,7 +808,7 @@ pre .keyword {
border-radius: 5px; border-radius: 5px;
width: 10em; width: 10em;
color:#e6e6e6; color:#e6e6e6;
background-color:#333; background:#333;
outline: 0; outline: 0;
float: right; float: right;
height: 1.8em; height: 1.8em;
@ -821,7 +821,7 @@ pre .keyword {
.searchBtn{ .searchBtn{
display:inline-block; display:inline-block;
color: inherit; color: inherit;
background-color: inherit; background: inherit;
} }
/* hide the border and fill the height to parent's */ /* hide the border and fill the height to parent's */
@ -949,7 +949,7 @@ svg#link {
} }
.copy-button { .copy-button {
background-color: #333; background: #333;
border: 1px solid #999; border: 1px solid #999;
border-radius: 5px; border-radius: 5px;
color: #d8d8d8; color: #d8d8d8;
@ -961,5 +961,5 @@ svg#link {
} }
.copy-button:hover { .copy-button:hover {
background-color: #3f3f3f; background: #3f3f3f;
} }