-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tags, github link and a few other changes to the blog.
- Loading branch information
Showing
16 changed files
with
692 additions
and
174 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 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 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
164 changes: 164 additions & 0 deletions
164
public/css/dark.d22e2a2879d933a4b781535fc4c4c716e9f9d35ea4986dd0cbabda82effc4bdd.css
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,164 @@ | ||
body { | ||
color: white; | ||
background-color: #202124; | ||
} | ||
|
||
::-moz-selection { | ||
background: blue; | ||
color: #fff; | ||
text-shadow: none; | ||
} | ||
|
||
::selection { | ||
background: red; | ||
color: #fff; | ||
text-shadow: none; | ||
} | ||
|
||
hr { | ||
border-top: 3px dotted blue; | ||
} | ||
code { | ||
background-color: lightblue; | ||
color: black; | ||
text-decoration: bold; | ||
padding: 0.1em 0.2em; | ||
} | ||
pre { | ||
background-color: #272822; | ||
line-height: 1.4; | ||
overflow-x: auto; | ||
padding: 1em; | ||
} | ||
blockquote { | ||
border-color: blue; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
color: #ddd; | ||
} | ||
h1::before { | ||
color: var(--darkMaincolor); | ||
content: "# "; | ||
} | ||
h2::before { | ||
color: var(--darkMaincolor); | ||
content: "## "; | ||
} | ||
h3::before { | ||
color: var(--darkMaincolor); | ||
content: "### "; | ||
} | ||
h4::before { | ||
color: var(--darkMaincolor); | ||
content: "#### "; | ||
} | ||
h5::before { | ||
color: var(--darkMaincolor); | ||
content: "##### "; | ||
} | ||
h6::before { | ||
color: var(--darkMaincolor); | ||
content: "###### "; | ||
} | ||
|
||
.toc { | ||
background-color: #272822; | ||
color: white; | ||
} | ||
|
||
a { | ||
border-bottom: 3px solid var(--darkMaincolor); | ||
color: inherit; | ||
} | ||
a:hover { | ||
background-color: var(--darkMaincolor); | ||
color: black; | ||
} | ||
|
||
.site-description a { | ||
color: #ddd; | ||
} | ||
.site-description a:hover { | ||
color: black; | ||
} | ||
|
||
.tags a { | ||
border-bottom: 3px solid var(--darkMaincolor); | ||
} | ||
.tags a:hover { | ||
background-color: var(--darkMaincolor); | ||
color: black; | ||
} | ||
|
||
.site-title a { | ||
color: white; | ||
text-decoration: none !important; | ||
} | ||
|
||
.header nav, | ||
.footer { | ||
border-color: #333; | ||
} | ||
|
||
.highlight { | ||
background-color: #333; | ||
} | ||
.soc:hover { | ||
color: black; | ||
} | ||
.draft-label { | ||
color: var(--darkMaincolor); | ||
background-color: blue; | ||
} | ||
.highlight pre code[class=language-javaScript]::before, | ||
.highlight pre code[class="language-js"]::before { | ||
content: "js"; | ||
background: #f7df1e; | ||
color: black; | ||
} | ||
.highlight pre code[class*='language-yml']::before, | ||
.highlight pre code[class*='language-yaml']::before { | ||
content: 'yaml'; | ||
background: #f71e6a; | ||
color: white; | ||
} | ||
.highlight pre code[class*='language-shell']::before, | ||
.highlight pre code[class*='language-bash']::before, | ||
.highlight pre code[class*='language-sh']::before { | ||
content: 'shell'; | ||
background: green; | ||
color:white | ||
} | ||
.highlight pre code[class*='language-json']::before{ | ||
content: 'json'; | ||
background: dodgerblue; | ||
color: #000000 | ||
} | ||
.highlight pre code[class*='language-python']::before, | ||
.highlight pre code[class*='language-py']::before { | ||
content: 'py'; | ||
background: blue; | ||
color: yellow ; | ||
} | ||
.highlight pre code[class*='language-css']::before{ | ||
content: 'css'; | ||
background: cyan; | ||
color: black ; | ||
} | ||
.highlight pre code[class*='language-go']::before{ | ||
content: 'Go'; | ||
background: cyan; | ||
color: royalblue ; | ||
} | ||
.highlight pre code[class*='language-md']::before, | ||
.highlight pre code[class*='language-md']::before{ | ||
content: 'Markdown'; | ||
background: royalblue; | ||
color: whitesmoke ; | ||
} |
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.