-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alomerry
committed
Oct 4, 2020
1 parent
b75667e
commit 6824b12
Showing
9 changed files
with
95 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,44 @@ | ||
/* 修改 code 样式 */ | ||
|
||
#post-content pre code { | ||
margin: 0 0 !important; | ||
padding: 0 0 !important; | ||
} | ||
#post-content pre:before { | ||
content: unset !important; | ||
/* background: unset !important; */ | ||
color: unset !important; | ||
padding: unset !important; | ||
padding: 2px 4px; | ||
background-color: #ccc !important; | ||
} | ||
|
||
pre code::-webkit-scrollbar-track-piece { | ||
background: #474949; | ||
} | ||
|
||
span[class$="keyword"] { | ||
color: #d800dc; | ||
} | ||
|
||
span[class$="string"], | ||
span[class$="char"], | ||
span[class$="attr-value"], | ||
span[class$="regex"], | ||
span[class$="variable"] { | ||
color: #26d065; | ||
} | ||
|
||
span[class$="bash"], | ||
span[class$="boolean"], | ||
span[class$="number"], | ||
span[class$="function"] { | ||
color: #c15a14; | ||
} | ||
|
||
span[class$="comment"], | ||
span[class$="block-comment"], | ||
span[class$="prolog"], | ||
span[class$="doctype"], | ||
span[class$="cdata"] { | ||
color: #757373; | ||
} | ||
|
||
span[class$="property"], | ||
span[class$="class-name"], | ||
span[class$="constant"], | ||
span[class$="symbol"] { | ||
color: #ffb20a; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#post-content blockquote { | ||
color: #4a4a4a!important; | ||
padding: unset!important; | ||
border-left: unset!important; | ||
background-color: rgba(66, 185, 131, .1)!important; | ||
padding: 13px 15px!important; | ||
border-left: 5px solid #099e43!important; | ||
} | ||
|
||
#post-content blockquote.content-copyright { | ||
background-color: rgba(255, 255, 255, 0)!important; | ||
background: rgb(255 255 255 / .3)!important | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.