Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b9d245

Browse files
committed
Deploying to docs from @ f9a33fb πŸš€
1 parent a2592d0 commit 0b9d245

File tree

82 files changed

+20832
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+20832
-0
lines changed

β€Ž.nojekyll

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
.litebox.overlay {
3+
background: rgba(0, 0, 0, 0.96);
4+
position: fixed;
5+
top: 0;
6+
left: 0;
7+
height: 100%;
8+
width: 100%;
9+
z-index: 10;
10+
11+
display: flex;
12+
align-items: center;
13+
justify-content: center;
14+
15+
box-sizing: border-box;
16+
padding: 1em;
17+
}
18+
19+
.litebox.overlay img {
20+
flex-shrink: 1;
21+
max-width: 100%;
22+
max-height: 100%;
23+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
2+
.gallery {
3+
padding: 0.5rem;
4+
5+
display: flex;
6+
flex-flow: row wrap;
7+
align-items: center;
8+
justify-content: center;
9+
}
10+
11+
.gallery figure {
12+
margin: 1rem;
13+
14+
background-color: rgb(250, 250, 250);
15+
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
16+
17+
/* This ensures that our figures never grow bigger than desired. */
18+
flex-basis: 400px;
19+
}
20+
21+
.gallery figure a {
22+
display: block;
23+
margin: 0.5rem;
24+
}
25+
26+
.gallery img {
27+
border: none;
28+
display: block;
29+
30+
width: 100%;
31+
}
32+
33+
.gallery figcaption {
34+
display: block;
35+
margin: 0.5rem;
36+
37+
font-size: 1rem;
38+
text-align: center;
39+
40+
display: flex;
41+
align-items: center;
42+
justify-content: center;
43+
44+
/* The figure caption should have a minimum height, if there are multiple
45+
lines of caption, the total size of the figure is likely to be the same as
46+
others. */
47+
min-height: 4rem;
48+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
(function ($, undefined) {
3+
function showImage(element, overlay) {
4+
if (element.href) {
5+
var image = new Image();
6+
image.src = element.href;
7+
overlay.append(image);
8+
}
9+
}
10+
11+
$.fn.litebox = function(callback) {
12+
callback = callback || showImage;
13+
14+
this.on('click', function() {
15+
var overlay = $('<div class="litebox overlay"></div>');
16+
17+
overlay.on('click', function() {
18+
overlay.remove();
19+
$('body').css('overflow', 'auto');
20+
});
21+
22+
callback(this, overlay);
23+
24+
$('body').css('overflow', 'hidden');
25+
$('body').append(overlay);
26+
27+
return false;
28+
});
29+
}
30+
}(jQuery));
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.syntax-theme-base .apache .tag {
2+
color: #00c; }
3+
.syntax-theme-base .apache .tag-name {
4+
color: #00f; }
5+
.syntax-theme-base .apache .tag-name {
6+
font-weight: bold; }
7+
8+
@media (prefers-color-scheme: dark) {
9+
.syntax-theme-base .apache .tag {
10+
color: #6666ff; }
11+
.syntax-theme-base .apache .tag-name {
12+
color: #9999ff; } }
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.syntax-theme-base .applescript {
2+
font-family: Geneva, Helvetica, sans-serif; }
3+
.syntax-theme-base .applescript .keyword {
4+
color: #00f;
5+
font-weight: bold; }
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.syntax-theme-base .assembly .register {
2+
color: #3caa20;
3+
font-style: italic; }
4+
.syntax-theme-base .assembly .label {
5+
font-weight: bold;
6+
color: #2a85b3; }
7+
.syntax-theme-base .assembly .directive {
8+
color: #828a3d; }
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.syntax-theme-base .bash-script .option {
2+
color: #03f; }
3+
.syntax-theme-base .bash-script .env {
4+
font-style: italic; }
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.syntax-theme-base .bash .stderr {
2+
color: red; }
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.syntax-theme-base .preprocessor {
2+
color: #63381f; }
3+
4+
@media (prefers-color-scheme: dark) {
5+
.syntax-theme-base .preprocessor {
6+
color: #c97e52; } }
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.syntax-theme-base .css .selector {
2+
color: #458;
3+
font-weight: bold; }
4+
.syntax-theme-base .css .property {
5+
color: teal; }
6+
.syntax-theme-base .css .color-box {
7+
position: relative; }
8+
.syntax-theme-base .css .color-box .sample {
9+
border: 1px solid #000;
10+
position: absolute;
11+
left: 0.2em;
12+
right: 0.2em;
13+
top: 0.2em;
14+
bottom: 0.2em; }
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.syntax-theme-base .add {
2+
color: green; }
3+
.syntax-theme-base .del {
4+
color: red; }
5+
.syntax-theme-base .insert {
6+
color: green; }
7+
.syntax-theme-base .insert-line {
8+
background-color: #cfc !important; }
9+
.syntax-theme-base .remove {
10+
color: red; }
11+
.syntax-theme-base .remove-line {
12+
background-color: #fcc !important; }
13+
.syntax-theme-base .offset {
14+
color: blue; }
15+
.syntax-theme-base .offset-line {
16+
background-color: #ccf !important; }
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.syntax-theme-base .html .doctype {
2+
font-weight: bold;
3+
color: #938; }
4+
.syntax-theme-base .html .javascript, .syntax-theme-base .html .css {
5+
font-style: italic; }
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.syntax .ocaml .operator {
2+
color: #06C;
3+
font-weight: bold; }
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.syntax .protobuf .variable {
2+
font-weight: bold; }
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.syntax-theme-base .python .decorator {
2+
color: #ffb600;
3+
font-weight: bold; }
4+
.syntax-theme-base .python .builtin {
5+
color: #33f;
6+
font-style: italic; }
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.syntax-theme-base .ruby .string .ruby {
2+
color: #808080; }
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.syntax-theme-base .xml .cdata-content {
2+
color: #046;
3+
border-radius: 0.5em; }
4+
.syntax-theme-base .xml .xml-tag, .syntax-theme-base .xml .cdata {
5+
color: #00c; }
6+
.syntax-theme-base .xml .tag-name, .syntax-theme-base .xml .cdata-tag {
7+
color: #00f;
8+
font-weight: bold; }
9+
.syntax-theme-base .xml .namespace {
10+
color: #00c; }
11+
.syntax-theme-base .xml .attribute {
12+
color: #00c; }
13+
.syntax-theme-base .xml .instruction {
14+
color: #00c; }
15+
.syntax-theme-base .xml .entity, .syntax-theme-base .xml .percent-escape {
16+
color: #666;
17+
background-color: #ddd;
18+
border-radius: 0.5em; }
19+
20+
@media (prefers-color-scheme: dark) {
21+
.syntax-theme-base .xml .cdata-content {
22+
color: #a46; }
23+
.syntax-theme-base .xml .xml-tag, .syntax-theme-base .xml .cdata {
24+
color: #c59de7; }
25+
.syntax-theme-base .xml .tag-name, .syntax-theme-base .xml .cdata-tag {
26+
color: #9ae; }
27+
.syntax-theme-base .xml .namespace {
28+
color: #c59de7; }
29+
.syntax-theme-base .xml .attribute {
30+
color: #c59de7; }
31+
.syntax-theme-base .xml .instruction {
32+
color: #c59de7; }
33+
.syntax-theme-base .xml .entity, .syntax-theme-base .xml .percent-escape {
34+
color: #999;
35+
background-color: #333; } }
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
pre code.syntax-theme-base {
2+
display: block; }
3+
pre code.syntax-theme-base > span {
4+
display: flex; }
5+
pre code.syntax-theme-base .indent {
6+
flex-grow: 0;
7+
flex-shrink: 0; }
8+
pre code.syntax-theme-base .text {
9+
white-space: pre-wrap;
10+
padding-left: 2ch;
11+
text-indent: -2ch; }
12+
13+
.syntax-theme-base a {
14+
text-decoration: none;
15+
color: inherit; }
16+
.syntax-theme-base .function {
17+
color: #33f; }
18+
.syntax-theme-base .keyword, .syntax-theme-base .access, .syntax-theme-base .option {
19+
color: #7a0968; }
20+
.syntax-theme-base .type {
21+
color: #3239D6; }
22+
.syntax-theme-base .comment {
23+
color: #6ac; }
24+
.syntax-theme-base .constant {
25+
color: #1c00ce; }
26+
.syntax-theme-base .string, .syntax-theme-base .symbol {
27+
color: #c41a15; }
28+
.syntax-theme-base .string .escape {
29+
color: #f99; }
30+
.syntax-theme-base .operator {
31+
color: black; }
32+
.syntax-theme-base .href {
33+
color: #0e0eff;
34+
text-decoration: underline; }
35+
.syntax-theme-base .variable {
36+
color: #466997; }
37+
.syntax-theme-base .highlight {
38+
background-color: #fdfdba; }
39+
40+
@media (prefers-color-scheme: dark) {
41+
.syntax-theme-base .operator {
42+
color: white; }
43+
.syntax-theme-base .function {
44+
color: #c59de7; }
45+
.syntax-theme-base .keyword, .syntax-theme-base .access, .syntax-theme-base .option {
46+
color: #328eff; }
47+
.syntax-theme-base .type {
48+
color: #37a4ff; }
49+
.syntax-theme-base .comment {
50+
color: #849fca; }
51+
.syntax-theme-base .constant {
52+
color: #c9a452; }
53+
.syntax-theme-base .string, .syntax-theme-base .symbol {
54+
color: #ed7f7d; }
55+
.syntax-theme-base .string .escape {
56+
color: #f99; }
57+
.syntax-theme-base .variable {
58+
color: #6e6dff; } }
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.syntax-container.syntax-theme-base div.editor.syntax {
2+
padding: 0.2em !important;
3+
margin: 0 !important;
4+
white-space: pre; }
5+
.syntax-container.syntax-theme-base div.editor.syntax:focus {
6+
outline: none; }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Syntax.themes["base"] = []
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.syntax-container.syntax-theme-bright .syntax {
2+
font-family: Menlo, Monaco, Consolas, monospace;
3+
line-height: 1.5em; }
4+
.syntax-container.syntax-theme-bright .syntax .function {
5+
color: #33f; }
6+
.syntax-container.syntax-theme-bright .syntax .keyword {
7+
color: #3c3; }
8+
.syntax-container.syntax-theme-bright .syntax .access {
9+
color: #ffb600;
10+
font-weight: bold; }
11+
.syntax-container.syntax-theme-bright .syntax .type {
12+
color: #191;
13+
font-weight: bold; }
14+
.syntax-container.syntax-theme-bright .syntax .comment {
15+
color: #6ac;
16+
font-style: italic; }
17+
.syntax-container.syntax-theme-bright .syntax .string, .syntax-container.syntax-theme-bright .syntax .constant {
18+
color: #f33; }
19+
.syntax-container.syntax-theme-bright .syntax .string .escape {
20+
color: #f99; }
21+
.syntax-container.syntax-theme-bright .syntax .operator {
22+
color: #c00; }
23+
.syntax-container.syntax-theme-bright .syntax .href {
24+
color: #00f;
25+
text-decoration: underline; }
26+
.syntax-container.syntax-theme-bright .syntax .variable {
27+
color: #22c; }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Syntax.themes["bright"] = ["base"]

β€Ž_components/jquery-syntax/jquery.syntax.brush.apache.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž_components/jquery-syntax/jquery.syntax.brush.applescript.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž_components/jquery-syntax/jquery.syntax.brush.assembly.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž_components/jquery-syntax/jquery.syntax.brush.bash-script.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž_components/jquery-syntax/jquery.syntax.brush.bash.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)