-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
9 changed files
with
539 additions
and
224 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,182 @@ | ||
/* PrismJS 1.29.0 | ||
https://prismjs.com/download.html#themes=prism&languages=markup+markup-templating+php */ | ||
code[class*=language-],pre[class*=language-]{color:#000;font-weight:500;background:0 0;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[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-]:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help} | ||
https://prismjs.com/download.html#themes=prism-coy&languages=markup+markup-templating+php+sql */ | ||
code[class*=language-], | ||
pre[class*=language-] { | ||
color: #000; | ||
background: 0 0; | ||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | ||
font-size: 1em; | ||
text-align: left; | ||
white-space: pre-wrap; | ||
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 | ||
} | ||
|
||
pre[class*=language-] { | ||
position: relative; | ||
margin: .5em 0; | ||
overflow: visible; | ||
padding: 1px | ||
} | ||
|
||
pre[class*=language-]>code { | ||
position: relative; | ||
z-index: 1; | ||
border-left: 10px solid #358ccb; | ||
box-shadow: -1px 0 0 0 #358ccb, 0 0 0 1px #dfdfdf; | ||
background-color: #fdfdfd; | ||
background-size: 3em 3em; | ||
background-origin: content-box; | ||
background-attachment: local | ||
} | ||
|
||
code[class*=language-] { | ||
max-height: inherit; | ||
height: inherit; | ||
padding: 0 1em; | ||
display: block; | ||
overflow: auto | ||
} | ||
|
||
:not(pre)>code[class*=language-], | ||
pre[class*=language-] { | ||
background-color: #fdfdfd; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
margin-bottom: 1em | ||
} | ||
|
||
:not(pre)>code[class*=language-] { | ||
position: relative; | ||
padding: .2em; | ||
border-radius: .3em; | ||
color: #c92c2c; | ||
border: 1px solid rgba(0, 0, 0, .1); | ||
display: inline; | ||
white-space: normal | ||
} | ||
|
||
.token.block-comment, | ||
.token.cdata, | ||
.token.comment, | ||
.token.doctype, | ||
.token.prolog { | ||
color: #7d8b99 | ||
} | ||
|
||
.token.punctuation { | ||
color: #5f6364 | ||
} | ||
|
||
.token.boolean, | ||
.token.constant, | ||
.token.deleted, | ||
.token.function-name, | ||
.token.number, | ||
.token.property, | ||
.token.symbol, | ||
.token.tag { | ||
color: #c92c2c | ||
} | ||
|
||
.token.attr-name, | ||
.token.builtin, | ||
.token.char, | ||
.token.function, | ||
.token.inserted, | ||
.token.selector, | ||
.token.string { | ||
color: #2f9c0a | ||
} | ||
|
||
.token.entity, | ||
.token.operator, | ||
.token.url, | ||
.token.variable { | ||
color: #a67f59; | ||
background: rgba(255, 255, 255, .5) | ||
} | ||
|
||
.token.atrule, | ||
.token.attr-value, | ||
.token.class-name, | ||
.token.keyword { | ||
color: #1990b8 | ||
} | ||
|
||
.token.important, | ||
.token.regex { | ||
color: #e90 | ||
} | ||
|
||
.language-css .token.string, | ||
.style .token.string { | ||
color: #a67f59; | ||
background: rgba(255, 255, 255, .5) | ||
} | ||
|
||
.token.important { | ||
font-weight: 400 | ||
} | ||
|
||
.token.bold { | ||
font-weight: 700 | ||
} | ||
|
||
.token.italic { | ||
font-style: italic | ||
} | ||
|
||
.token.entity { | ||
cursor: help | ||
} | ||
|
||
.token.namespace { | ||
opacity: .7 | ||
} | ||
|
||
@media screen and (max-width:767px) { | ||
|
||
pre[class*=language-]:after, | ||
pre[class*=language-]:before { | ||
bottom: 14px; | ||
box-shadow: none | ||
} | ||
} | ||
|
||
pre[class*=language-].line-numbers.line-numbers { | ||
padding-left: 0 | ||
} | ||
|
||
pre[class*=language-].line-numbers.line-numbers code { | ||
padding-left: 3.8em | ||
} | ||
|
||
pre[class*=language-].line-numbers.line-numbers .line-numbers-rows { | ||
left: 0 | ||
} | ||
|
||
pre[class*=language-][data-line] { | ||
padding-top: 0; | ||
padding-bottom: 0; | ||
padding-left: 0 | ||
} | ||
|
||
pre[data-line] code { | ||
position: relative; | ||
padding-left: 4em | ||
} | ||
|
||
pre .line-highlight { | ||
margin-top: 0 | ||
} |
Large diffs are not rendered by default.
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
Oops, something went wrong.