Skip to content

Commit 4aa0e42

Browse files
Deployed 4273ce3 with MkDocs version: 1.6.0
0 parents  commit 4aa0e42

File tree

290 files changed

+590159
-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.

290 files changed

+590159
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

+2,447
Large diffs are not rendered by default.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
knulli.org

_inc/css/custom.css

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/* Colors Light & Dark */
2+
[data-md-color-scheme="art-book"] {
3+
/* Primary color shades */
4+
--md-primary-fg-color: #111111;
5+
--md-primary-bg-color: #eeeeee;
6+
--md-primary-bg-color--light: #bbbbbb;
7+
/* Accent color shades */
8+
--md-accent-fg-color: #5998FF;
9+
--md-accent-fg-color--transparent: #cccccc;
10+
/* Default color shades */
11+
--md-default-fg-color: #111111;
12+
--md-default-fg-color--light: #222222;
13+
--md-default-fg-color--lighter: #cccccc;
14+
--md-default-fg-color--lightest: #cccccc;
15+
--md-default-bg-color: #dddddd;
16+
--md-default-bg-color--light: #dddddd;
17+
--md-default-bg-color--lighter: #dddddd;
18+
--md-default-bg-color--lightest: #dddddd;
19+
/* Typeset color shades */
20+
--md-typeset-color: #111111;
21+
/* Typeset `a` color shades */
22+
--md-typeset-a-color: #5088e5;
23+
/* Typeset `table` color shades */
24+
--md-typeset-table-color: #cccccc;
25+
--md-typeset-table-color--light: #eeeeee;
26+
/* Footer color shades */
27+
--md-footer-bg-color: #111111;
28+
/* Typeset `kbd` color shades */
29+
--md-typeset-kbd-color: #eeeeee;
30+
--md-typeset-kbd-accent-color: #dddddd;
31+
--md-typeset-kbd-border-color: #bbbbbb;
32+
/* Code color shades */
33+
--md-code-bg-color: #eee;
34+
--md-code-fg-color: #111;
35+
--md-code-hl-operator-color: #111;
36+
--md-code-hl-variable-color: #111;
37+
--md-code-hl-comment-color: #999;
38+
--md-code-hl-punctuation-color: #111;
39+
}
40+
[data-md-color-scheme="art-book-next"] {
41+
/* Primary color shades */
42+
--md-primary-fg-color: #111111;
43+
--md-primary-bg-color: #eeeeee;
44+
--md-primary-bg-color--light: #bbbbbb;
45+
/* Accent color shades */
46+
--md-accent-fg-color: #5998FF;
47+
--md-accent-fg-color--transparent: #333333;
48+
/* Default color shades */
49+
--md-default-fg-color: #eeeeee;
50+
--md-default-fg-color--light: #eeeeee;
51+
--md-default-fg-color--lighter: #888888;
52+
--md-default-fg-color--lightest: #444444;
53+
--md-default-bg-color: #222222;
54+
--md-default-bg-color--light: #222222;
55+
--md-default-bg-color--lighter: #222222;
56+
--md-default-bg-color--lightest: #222222;
57+
/* Typeset color shades */
58+
--md-typeset-color: #eeeeee;
59+
/* Typeset `a` color shades */
60+
--md-typeset-a-color: #5998FF;
61+
/* Typeset `table` color shades */
62+
--md-typeset-table-color: #333333;
63+
--md-typeset-table-color--light: #444444;
64+
/* Footer color shades */
65+
--md-footer-bg-color: #111111;
66+
/* Typeset `kbd` color shades */
67+
--md-typeset-kbd-color: #555;
68+
--md-typeset-kbd-accent-color: #444;
69+
--md-typeset-kbd-border-color: #222;
70+
/* Code color shades */
71+
--md-code-bg-color: #111;
72+
--md-code-fg-color: #fff;
73+
--md-code-hl-operator-color: #fff;
74+
--md-code-hl-variable-color: #fff;
75+
--md-code-hl-comment-color: #999;
76+
--md-code-hl-punctuation-color: #fff;
77+
}
78+
79+
.md-typeset .admonition, .md-typeset details {
80+
background-color: inherit;
81+
color: inherit
82+
}
83+
84+
[data-md-color-scheme="art-book"] img[src$="#only-dark"],
85+
[data-md-color-scheme="art-book"] img[src$="#gh-dark-mode-only"] {
86+
display: none; /* Hide dark images in light mode */
87+
}
88+
[data-md-color-scheme="art-book-next"] img[src$="#only-light"],
89+
[data-md-color-scheme="art-book-next"] img[src$="#gh-light-mode-only"] {
90+
display: none; /* Hide dark images in light mode */
91+
}
92+
93+
.md-typeset h1, .md-typeset h2, .md-typeset h3 {
94+
font-weight: 700;
95+
}
96+
.md-typeset h1 {
97+
margin: 0 0 0.64em;
98+
}
99+
.md-typeset h2 {
100+
margin: 1em 0 0.64em;
101+
}
102+
.md-typeset h3 {
103+
margin: 0.64em 0 0.8em;
104+
}
105+
106+
.md-header__inner {
107+
padding: 0.4rem 0.2rem;
108+
}
109+
110+
.md-main__inner {
111+
margin-top: 0.5rem;
112+
padding-top: 0;
113+
}
114+
115+
.md-typeset table:not([class]) {
116+
font-size: .74rem;
117+
}
118+
119+
.md-nav__item--section>.md-nav__link {
120+
font-weight: 700;
121+
}
122+
123+
@media screen and (min-width: 76.25em) {
124+
.md-nav__item--section {
125+
margin: 1.5em 0;
126+
}
127+
.md-nav__item--section>.md-nav__link {
128+
font-size: .8rem;
129+
}
130+
}
131+
132+
.md-nav__container>.md-nav__link {
133+
color: inherit;
134+
}
135+
136+
div.preview-container {
137+
margin-block-start: 1em;
138+
margin-block-end: 1em;
139+
position: relative;
140+
display: flex;
141+
align-items: center;
142+
justify-content: center
143+
}
144+
div.preview-container video {
145+
position: absolute;
146+
margin: 0;
147+
width: 52%;
148+
}
149+
div.preview-container image {
150+
position: absolute;
151+
}
491 KB
Loading

_inc/images/collections-dynamic-1.png

414 KB
Loading

_inc/images/collections-dynamic-2.png

297 KB
Loading

_inc/images/collections-dynamic-3.png

250 KB
Loading

_inc/images/collections-dynamic-4.png

243 KB
Loading
413 KB
Loading
450 KB
Loading

_inc/images/collections-main-menu.png

402 KB
Loading

_inc/images/face-buttons.png

68.2 KB
Loading

_inc/images/knulli-booting-up.png

2.81 MB
Loading

_inc/images/logo-knulli.png

109 KB
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

_inc/images/screenshots/menu.png

274 KB
Loading
115 KB
Loading

assets/images/favicon.png

1.83 KB
Loading

assets/javascripts/bundle.ad660dcc.min.js

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bundle.ad660dcc.min.js.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/glightbox.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.ar.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.da.min.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/lunr/min/lunr.de.min.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)