Skip to content

Commit aa5e82d

Browse files
author
committed
Deployed cbecb25 with MkDocs version: 1.6.1
0 parents  commit aa5e82d

188 files changed

Lines changed: 78615 additions & 0 deletions

File tree

Some content is hidden

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

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 1585 additions & 0 deletions
Large diffs are not rendered by default.

assets/css/codehilite.css

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
/*
2+
/////////////////
3+
// Inline Code //
4+
/////////////////
5+
*/
6+
7+
.md-typeset code {
8+
background-color: #424242;
9+
color: #F5F5F5;
10+
margin: 0;
11+
padding: 0.07353em 0.29412em;
12+
box-shadow: none;
13+
}
14+
15+
/*
16+
/////////////////
17+
// Code Blocks //
18+
/////////////////
19+
*/
20+
21+
/*
22+
line number
23+
*/
24+
.linenos {
25+
color: #F5F5F5 !important;
26+
background-color: #313131 !important;
27+
}
28+
29+
/*
30+
code block background
31+
*/
32+
.codehilite {
33+
background-color: #424242 !important;
34+
}
35+
36+
/*
37+
scroll bar size
38+
*/
39+
40+
.md-typeset .codehilite::-webkit-scrollbar {
41+
height: 1rem !important;
42+
}
43+
44+
/*
45+
actual syntax highlighting
46+
*/
47+
.codehilite pre { color: #FAFAFA !important; background-color: transparent !important; }
48+
.codehilite .hll { background-color: #272822 !important; }
49+
.codehilite .c { color: #a1a1b6 !important } /* Comment */
50+
.codehilite .err { color: #960050 !important; background-color: #1e0010 !important } /* Error */
51+
.codehilite .k { color: #66d9ef !important } /* Keyword */
52+
.codehilite .l { color: #ae81ff !important } /* Literal */
53+
.codehilite .n { color: #f8f8f2 !important } /* Name */
54+
.codehilite .o { color: #f92672 !important } /* Operator */
55+
.codehilite .p { color: #f8f8f2 !important } /* Punctuation */
56+
.codehilite .cm { color: #a1a1b6 !important } /* Comment.Multiline */
57+
.codehilite .cp { color: #a1a1b6 !important } /* Comment.Preproc */
58+
.codehilite .c1 { color: #a1a1b6 !important } /* Comment.Single */
59+
.codehilite .cs { color: #a1a1b6 !important } /* Comment.Special */
60+
.codehilite .ge { font-style: italic !important } /* Generic.Emph */
61+
.codehilite .gs { font-weight: bold !important } /* Generic.Strong */
62+
.codehilite .kc { color: #66d9ef !important } /* Keyword.Constant */
63+
.codehilite .kd { color: #66d9ef !important } /* Keyword.Declaration */
64+
.codehilite .kn { color: #f92672 !important } /* Keyword.Namespace */
65+
.codehilite .kp { color: #66d9ef !important } /* Keyword.Pseudo */
66+
.codehilite .kr { color: #66d9ef !important } /* Keyword.Reserved */
67+
.codehilite .kt { color: #66d9ef !important } /* Keyword.Type */
68+
.codehilite .ld { color: #e6db74 !important } /* Literal.Date */
69+
.codehilite .m { color: #ae81ff !important } /* Literal.Number */
70+
.codehilite .s { color: #e6db74 !important } /* Literal.String */
71+
.codehilite .na { color: #a6e22e !important } /* Name.Attribute */
72+
.codehilite .nb { color: #f8f8f2 !important } /* Name.Builtin */
73+
.codehilite .nc { color: #a6e22e !important } /* Name.Class */
74+
.codehilite .no { color: #66d9ef !important } /* Name.Constant */
75+
.codehilite .nd { color: #a6e22e !important } /* Name.Decorator */
76+
.codehilite .ni { color: #f8f8f2 !important } /* Name.Entity */
77+
.codehilite .ne { color: #a6e22e !important } /* Name.Exception */
78+
.codehilite .nf { color: #a6e22e !important } /* Name.Function */
79+
.codehilite .nl { color: #f8f8f2 !important } /* Name.Label */
80+
.codehilite .nn { color: #f8f8f2 !important } /* Name.Namespace */
81+
.codehilite .nx { color: #a6e22e !important } /* Name.Other */
82+
.codehilite .py { color: #f8f8f2 !important } /* Name.Property */
83+
.codehilite .nt { color: #f92672 !important } /* Name.Tag */
84+
.codehilite .nv { color: #f8f8f2 !important } /* Name.Variable */
85+
.codehilite .ow { color: #f92672 !important } /* Operator.Word */
86+
.codehilite .w { color: #f8f8f2 !important } /* Text.Whitespace */
87+
.codehilite .mf { color: #ae81ff !important } /* Literal.Number.Float */
88+
.codehilite .mh { color: #ae81ff !important } /* Literal.Number.Hex */
89+
.codehilite .mi { color: #ae81ff !important } /* Literal.Number.Integer */
90+
.codehilite .mo { color: #ae81ff !important } /* Literal.Number.Oct */
91+
.codehilite .sb { color: #e6db74 !important } /* Literal.String.Backtick */
92+
.codehilite .sc { color: #e6db74 !important } /* Literal.String.Char */
93+
.codehilite .sd { color: #e6db74 !important } /* Literal.String.Doc */
94+
.codehilite .s2 { color: #e6db74 !important } /* Literal.String.Double */
95+
.codehilite .se { color: #ae81ff !important } /* Literal.String.Escape */
96+
.codehilite .sh { color: #e6db74 !important } /* Literal.String.Heredoc */
97+
.codehilite .si { color: #e6db74 !important } /* Literal.String.Interpol */
98+
.codehilite .sx { color: #e6db74 !important } /* Literal.String.Other */
99+
.codehilite .sr { color: #e6db74 !important } /* Literal.String.Regex */
100+
.codehilite .s1 { color: #e6db74 !important } /* Literal.String.Single */
101+
.codehilite .ss { color: #e6db74 !important } /* Literal.String.Symbol */
102+
.codehilite .bp { color: #f8f8f2 !important } /* Name.Builtin.Pseudo */
103+
.codehilite .vc { color: #f8f8f2 !important } /* Name.Variable.Class */
104+
.codehilite .vg { color: #f8f8f2 !important } /* Name.Variable.Global */
105+
.codehilite .vi { color: #f8f8f2 !important } /* Name.Variable.Instance */
106+
.codehilite .il { color: #ae81ff !important } /* Literal.Number.Integer.Long */
107+
108+
.codehilite .gh { } /* Generic Heading & Diff Header */
109+
.codehilite .gu { color: #a1a1b6 !important ; } /* Generic.Subheading & Diff Unified/Comment? */
110+
.codehilite .gd { color: #f92672 !important ; } /* Generic.Deleted & Diff Deleted */
111+
.codehilite .gi { color: #a6e22e !important ; } /* Generic.Inserted & Diff Inserted */
112+
113+
.codehilite .md-clipboard:before { color: rgba(255, 255, 255, 0.07) } /* Clipboard button (no hover) */
114+
.codehilite:hover .md-clipboard:before { color: rgba(255, 255, 255, 0.54) } /* Clipboard button (hovered) */

assets/css/dark_theme.css

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
/*
2+
//////////////////
3+
// Main content //
4+
//////////////////
5+
*/
6+
7+
/*
8+
Default text color
9+
and background color
10+
*/
11+
.md-main {
12+
color: #F5F5F5 !important;
13+
background-color: #212121 !important;
14+
}
15+
16+
/*
17+
Main headlines
18+
*/
19+
.md-main h1 {
20+
color: white !important;
21+
}
22+
23+
/*
24+
Tables
25+
*/
26+
table {
27+
background-color: #616161 !important;
28+
}
29+
30+
tbody {
31+
background-color: #484848 !important;
32+
}
33+
34+
/*
35+
Blockquotes
36+
*/
37+
.md-typeset blockquote {
38+
color: rgba(255,255,255,0.8) !important;
39+
border-color: rgba(255,255,255,0.54) !important;
40+
}
41+
42+
/*
43+
////////////////////
44+
// Navigation bar //
45+
////////////////////
46+
*/
47+
48+
/*
49+
Left and right toc scrollbar
50+
*/
51+
.md-sidebar__scrollwrap::-webkit-scrollbar-thumb {
52+
background-color: #E0E0E0 !important;
53+
}
54+
55+
56+
57+
.md-nav {
58+
color: #F5F5F5 !important;
59+
background-color: #212121 !important;
60+
}
61+
62+
/*
63+
Arrow Left Icon
64+
*/
65+
html .md-nav--primary .md-nav__title:before {
66+
color: #FAFAFA !important;
67+
}
68+
69+
.md-nav__title {
70+
color: rgba(255,255,255,1) !important;
71+
background-color: #212121 !important;
72+
}
73+
74+
/*
75+
Arrow Right Icon
76+
*/
77+
.md-nav--primary .md-nav__link:after {
78+
color: #FAFAFA !important;
79+
}
80+
81+
.md-nav__list {
82+
color: rgba(255,255,255,1) !important;
83+
background-color: #212121 !important;
84+
}
85+
86+
.md-nav__item {
87+
color: rgba(255,255,255,1) !important;
88+
background-color: #212121 !important;
89+
}
90+
91+
.md-nav__link[data-md-state=blur] {
92+
color: rgba(255,255,255,0.54) !important;
93+
}
94+
95+
/*
96+
////////////
97+
// Search //
98+
////////////
99+
*/
100+
101+
/*
102+
scroll bar
103+
104+
attention:
105+
background is scroll handle color!
106+
*/
107+
.md-search__scrollwrap::-webkit-scrollbar-thumb {
108+
background-color: #E0E0E0 !important;
109+
}
110+
/*
111+
scroll bar background color
112+
*/
113+
.md-search__scrollwrap {
114+
background-color: #424242 !important;
115+
}
116+
117+
/*
118+
Icon color
119+
*/
120+
.md-search-result__article--document:before {
121+
color: #EEEEEE !important;
122+
}
123+
124+
/*
125+
headline color and
126+
result list background
127+
*/
128+
.md-search-result__list {
129+
color: #EEEEEE !important;
130+
background-color: #212121 !important;
131+
}
132+
133+
/*
134+
result info/count
135+
*/
136+
.md-search-result__meta {
137+
background-color: #EEEEEE !important;
138+
}
139+
140+
/*
141+
article preview text color
142+
*/
143+
.md-search-result__teaser {
144+
color: #BDBDBD !important;
145+
}

assets/css/sn.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.md-header{
2+
background-color: #053B6C
3+
}
4+
.md-tabs{
5+
background-color: #053B6C
6+
}

assets/favicon.png

1.81 KB
7.95 KB
5.69 KB
443 KB
138 KB

0 commit comments

Comments
 (0)