-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
Showing
4 changed files
with
130 additions
and
361 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,130 @@ | ||
/** | ||
* prism.js Funky theme | ||
* Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/ | ||
* @author Lea Verou | ||
*/ | ||
|
||
code[class*="language-"], | ||
pre[class*="language-"] { | ||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | ||
text-align: left; | ||
white-space: pre; | ||
word-spacing: normal; | ||
word-break: normal; | ||
word-wrap: normal; | ||
line-height: 1.5; | ||
|
||
-moz-tab-size: 4; | ||
-o-tab-size: 4; | ||
tab-size: 4; | ||
|
||
-webkit-hyphens: none; | ||
-moz-hyphens: none; | ||
-ms-hyphens: none; | ||
hyphens: none; | ||
} | ||
|
||
/* Code blocks */ | ||
pre[class*="language-"] { | ||
padding: .4em .8em; | ||
margin: .5em 0; | ||
overflow: auto; | ||
background: black; | ||
background-size: 1em 1em; | ||
} | ||
|
||
code[class*="language-"] { | ||
background: black; | ||
color: white; | ||
box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black; | ||
} | ||
|
||
/* Inline code */ | ||
:not(pre) > code[class*="language-"] { | ||
padding: .2em; | ||
border-radius: .3em; | ||
box-shadow: none; | ||
white-space: normal; | ||
} | ||
|
||
.token.comment, | ||
.token.prolog, | ||
.token.doctype, | ||
.token.cdata { | ||
color: #aaa; | ||
} | ||
|
||
.token.punctuation { | ||
color: #999; | ||
} | ||
|
||
.namespace { | ||
opacity: .7; | ||
} | ||
|
||
.token.property, | ||
.token.tag, | ||
.token.boolean, | ||
.token.number, | ||
.token.constant, | ||
.token.symbol { | ||
color: #0cf; | ||
} | ||
|
||
.token.selector, | ||
.token.attr-name, | ||
.token.string, | ||
.token.char, | ||
.token.builtin { | ||
color: yellow; | ||
} | ||
|
||
.token.operator, | ||
.token.entity, | ||
.token.url, | ||
.language-css .token.string, | ||
.toke.variable, | ||
.token.inserted { | ||
color: yellowgreen; | ||
} | ||
|
||
.token.atrule, | ||
.token.attr-value, | ||
.token.keyword { | ||
color: deeppink; | ||
} | ||
|
||
.token.regex, | ||
.token.important { | ||
color: orange; | ||
} | ||
|
||
.token.important, | ||
.token.bold { | ||
font-weight: bold; | ||
} | ||
.token.italic { | ||
font-style: italic; | ||
} | ||
|
||
.token.entity { | ||
cursor: help; | ||
} | ||
|
||
.token.deleted { | ||
color: red; | ||
} | ||
code[class*="language-"], | ||
pre[class*="language-"] { | ||
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; | ||
text-align: left; | ||
white-space: pre; | ||
word-spacing: normal; | ||
word-break: normal; | ||
word-wrap: normal; | ||
line-height: 1.5; | ||
tab-size: 4; | ||
hyphens: none; | ||
} | ||
|
||
// code blocks | ||
pre[class*="language-"] { | ||
padding: .4em .8em; | ||
margin: .5em 0; | ||
overflow: auto; | ||
background: black; | ||
background-size: 1em 1em; | ||
border-radius: .3em; | ||
} | ||
|
||
code[class*="language-"] { | ||
background: black; | ||
color: white; | ||
} | ||
|
||
// inline code | ||
:not(pre) > code[class*="language-"] { | ||
padding: .1em .3em; | ||
border-radius: .3em; | ||
box-shadow: none; | ||
white-space: normal; | ||
} | ||
|
||
.token.comment, | ||
.token.prolog, | ||
.token.doctype, | ||
.token.cdata { | ||
color: #aaa; | ||
} | ||
|
||
.token.punctuation { | ||
color: #999; | ||
} | ||
|
||
.namespace { | ||
opacity: .7; | ||
} | ||
|
||
.token.property, | ||
.token.tag, | ||
.token.boolean, | ||
.token.number, | ||
.token.constant, | ||
.token.symbol { | ||
color: #0cf; | ||
} | ||
|
||
.token.selector, | ||
.token.attr-name, | ||
.token.string, | ||
.token.char, | ||
.token.builtin { | ||
color: yellow; | ||
} | ||
|
||
.token.operator, | ||
.token.entity, | ||
.token.url, | ||
.language-css .token.string, | ||
.toke.variable, | ||
.token.inserted { | ||
color: yellowgreen; | ||
} | ||
|
||
.token.atrule, | ||
.token.attr-value, | ||
.token.keyword { | ||
color: deeppink; | ||
} | ||
|
||
.token.regex, | ||
.token.important { | ||
color: orange; | ||
} | ||
|
||
.token.important, | ||
.token.bold { | ||
font-weight: bold; | ||
} | ||
.token.italic { | ||
font-style: italic; | ||
} | ||
|
||
.token.entity { | ||
cursor: help; | ||
} | ||
|
||
.token.deleted { | ||
color: red; | ||
} | ||
|
||
.gatsby-highlight-code-line { | ||
background-color: #222; | ||
display: block; | ||
margin-right: -1em; | ||
margin-left: -1em; | ||
padding-right: 1em; | ||
padding-left: 0.75em; | ||
border-left: 0.25em solid #0cf; | ||
} | ||
|
||
.gatsby-highlight { | ||
background-color: black; | ||
border-radius: 0.3em; | ||
margin: 0.5em 0; | ||
padding: 1em; | ||
overflow: auto; | ||
} | ||
|
||
.gatsby-highlight pre[class*="language-"] { | ||
background-color: transparent; | ||
margin: 0; | ||
padding: 0; | ||
overflow: initial; | ||
float: left; | ||
min-width: 100%; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.