mirror of https://gitlab.com/curben/blog
refactor(css): background-color to background
This commit is contained in:
parent
32a76d0f6d
commit
19940eebcb
|
@ -164,7 +164,7 @@ kbd,
|
|||
pre,
|
||||
samp {
|
||||
font-size: 0.9em;
|
||||
background-color: #d8d8d8;
|
||||
background: #d8d8d8;
|
||||
}
|
||||
|
||||
.article .article-entry blockquote footer cite a:hover,
|
||||
|
@ -622,7 +622,7 @@ blockquote {
|
|||
.dark .container,
|
||||
.dark .footer {
|
||||
color: #e6e6e6;
|
||||
background-color: #000;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.dark a:hover {
|
||||
|
@ -642,7 +642,7 @@ blockquote {
|
|||
.dark pre,
|
||||
.dark samp {
|
||||
font-size: 0.9em;
|
||||
background-color: #333;
|
||||
background: #333;
|
||||
}
|
||||
|
||||
.dark table caption,
|
||||
|
@ -653,7 +653,7 @@ blockquote {
|
|||
|
||||
.dark .article-entry .highlight,
|
||||
.dark .article-entry pre {
|
||||
background-color: #333;
|
||||
background: #333;
|
||||
}
|
||||
|
||||
.dark .article-entry .highlight table caption,
|
||||
|
@ -808,7 +808,7 @@ pre .keyword {
|
|||
border-radius: 5px;
|
||||
width: 10em;
|
||||
color:#e6e6e6;
|
||||
background-color:#333;
|
||||
background:#333;
|
||||
outline: 0;
|
||||
float: right;
|
||||
height: 1.8em;
|
||||
|
@ -821,7 +821,7 @@ pre .keyword {
|
|||
.searchBtn{
|
||||
display:inline-block;
|
||||
color: inherit;
|
||||
background-color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
/* hide the border and fill the height to parent's */
|
||||
|
@ -949,7 +949,7 @@ svg#link {
|
|||
}
|
||||
|
||||
.copy-button {
|
||||
background-color: #333;
|
||||
background: #333;
|
||||
border: 1px solid #999;
|
||||
border-radius: 5px;
|
||||
color: #d8d8d8;
|
||||
|
@ -961,5 +961,5 @@ svg#link {
|
|||
}
|
||||
|
||||
.copy-button:hover {
|
||||
background-color: #3f3f3f;
|
||||
background: #3f3f3f;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue