-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
Colorbrewer theme | ||
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> | ||
Ported by Fabrício Tavares de Oliveira | ||
*/ | ||
|
||
.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
padding: 0.5em; | ||
background: #fff; | ||
} | ||
|
||
.hljs, | ||
.hljs-subst { | ||
color: #000; | ||
} | ||
|
||
.hljs-string, | ||
.hljs-meta, | ||
.hljs-symbol, | ||
.hljs-template-tag, | ||
.hljs-template-variable, | ||
.hljs-addition { | ||
color: #756bb1; | ||
} | ||
|
||
.hljs-comment, | ||
.hljs-quote { | ||
color: #636363; | ||
} | ||
|
||
.hljs-number, | ||
.hljs-regexp, | ||
.hljs-literal, | ||
.hljs-bullet, | ||
.hljs-link { | ||
color: #31a354; | ||
} | ||
|
||
.hljs-deletion, | ||
.hljs-variable { | ||
color: #88f; | ||
} | ||
|
||
|
||
|
||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-title, | ||
.hljs-section, | ||
.hljs-built_in, | ||
.hljs-doctag, | ||
.hljs-type, | ||
.hljs-tag, | ||
.hljs-name, | ||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-strong { | ||
color: #3182bd; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-attribute { | ||
color: #e6550d; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> | ||
*/ | ||
|
||
.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
padding: 0.5em; | ||
background: #F0F0F0; | ||
} | ||
|
||
|
||
/* Base color: saturation 0; */ | ||
|
||
.hljs, | ||
.hljs-subst { | ||
color: #444; | ||
} | ||
|
||
.hljs-comment { | ||
color: #888888; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-attribute, | ||
.hljs-selector-tag, | ||
.hljs-meta-keyword, | ||
.hljs-doctag, | ||
.hljs-name { | ||
font-weight: bold; | ||
} | ||
|
||
|
||
/* User color: hue: 0 */ | ||
|
||
.hljs-type, | ||
.hljs-string, | ||
.hljs-number, | ||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-quote, | ||
.hljs-template-tag, | ||
.hljs-deletion { | ||
color: #880000; | ||
} | ||
|
||
.hljs-title, | ||
.hljs-section { | ||
color: #880000; | ||
font-weight: bold; | ||
} | ||
|
||
.hljs-regexp, | ||
.hljs-symbol, | ||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-link, | ||
.hljs-selector-attr, | ||
.hljs-selector-pseudo { | ||
color: #BC6060; | ||
} | ||
|
||
|
||
/* Language color: hue: 90; */ | ||
|
||
.hljs-literal { | ||
color: #78A960; | ||
} | ||
|
||
.hljs-built_in, | ||
.hljs-bullet, | ||
.hljs-code, | ||
.hljs-addition { | ||
color: #397300; | ||
} | ||
|
||
|
||
/* Meta color: hue: 200 */ | ||
|
||
.hljs-meta { | ||
color: #1f7199; | ||
} | ||
|
||
.hljs-meta-string { | ||
color: #4d99bf; | ||
} | ||
|
||
|
||
/* Misc effects */ | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-strong { | ||
font-weight: bold; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@media (max-width: 1199px) and (min-width: 992px) { | ||
.example-item, .example-item-3, .example-item-4 {width: 33.3333%;} | ||
} | ||
|
||
@media (max-width: 991px) and (min-width: 768px) { | ||
.example-item, .example-item-3, .example-item-4 {width: 50%;} | ||
} | ||
|
||
@media (max-width: 767px) and (min-width: 0px) { | ||
.example-item, .example-item-3, .example-item-4 {width: 100%;} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.