Skip to content

Commit

Permalink
deploy: eb3f712
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 15, 2024
1 parent d43a817 commit bfc2181
Show file tree
Hide file tree
Showing 127 changed files with 3,755 additions and 996 deletions.
11 changes: 7 additions & 4 deletions 404.html

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions includes/example.html.part → _includes/example.html.part
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<p>
<i><b>Example HTML include</b></i>
</p>

<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
7 changes: 7 additions & 0 deletions _includes/example.md.part
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_**Example Mardown include**_

File including a simple Markdown table.

| Head 1 | Head 2 | Head 3 |
| ------ | ------ | ------ |
| 1 | 2 | 3 |
65 changes: 65 additions & 0 deletions _includes/include-page/index.html

Large diffs are not rendered by default.

59 changes: 59 additions & 0 deletions _includes/index.html

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions asciidoc/admonition-icons/index.html

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions asciidoc/admonitions/index.html

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions asciidoc/index.html

Large diffs are not rendered by default.

41 changes: 0 additions & 41 deletions categories/index.html

This file was deleted.

1 change: 0 additions & 1 deletion categories/index.xml

This file was deleted.

2 changes: 0 additions & 2 deletions categories/page/1/index.html

This file was deleted.

44 changes: 30 additions & 14 deletions collapse/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion collapse/index.xml

This file was deleted.

46 changes: 31 additions & 15 deletions collapse/level-1/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion collapse/level-1/index.xml

This file was deleted.

42 changes: 29 additions & 13 deletions collapse/level-1/level-1-1/index.html

Large diffs are not rendered by default.

42 changes: 29 additions & 13 deletions collapse/level-1/level-1-2/index.html

Large diffs are not rendered by default.

42 changes: 29 additions & 13 deletions collapse/level-2/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion collapse/level-2/index.xml

This file was deleted.

42 changes: 29 additions & 13 deletions collapse/level-2/level-2-1/index.html

Large diffs are not rendered by default.

44 changes: 30 additions & 14 deletions collapse/level-2/level-2-2/index.html

Large diffs are not rendered by default.

25 changes: 24 additions & 1 deletion custom.css
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
/* You can add custom styles here. */
:root {
--code-max-height: 60rem;
}

.icon-grid {
width: 8rem;
height: 8rem;
margin: 0.2em;
text-align: center;
padding: 0.3em;
}

.icon-grid__line {
height: 4rem;
}

.icon-grid__line .gdoc-icon {
width: 3em;
height: 3em;
}

.icon-grid__line--text {
font-size: 0.8em;
}
167 changes: 148 additions & 19 deletions custom.css.example
Original file line number Diff line number Diff line change
@@ -1,25 +1,154 @@
/* defaut link color */
a { color: #1c388e; }
a:visited { color: #73bfb8 }
/* Global customization */

/* site header */
.gdoc-header { background: #e66a4e; border-color: #404040; }
.gdoc-header__link, .gdoc-header__link:visited { color: #ffffff; }
:root {
--code-max-height: 60rem;
}

/* page links */
.gdoc-page__footer a, .gdoc-page__footer a:visited, .gdoc-page__header a, .gdoc-page__header a:visited { color: #1c388e; }
/* Light mode theming */
:root,
:root[color-theme="light"] {
--header-background: #4ec58a;
--header-font-color: #ffffff;

/* site footer */
.gdoc-footer { background: #404040; color: #ffffff; }
.gdoc-footer__link{ color: #fecf50; }
.gdoc-footer__link:visited, .gdoc-footer__link:hover { color: #fecf50; }
--body-background: #ffffff;
--body-font-color: #343a40;

--mark-color: #ffab00;

/* button shortcode */
.gdoc-button { color: #495057; }
.gdoc-button:hover { background-color: #eb8771; border-color: #e66a4e; color: #ffffff; }
--button-background: #62cb97;
--button-border-color: #4ec58a;

/* hint shortcode */
.gdoc-hint.info { background: #d1d7e8; border-color: #324b99; color: black; }
.gdoc-hint.warning { background: #fef5dc; border-color: #e4ba48; color: black; }
.gdoc-hint.danger { background: #fae1db; border-color: #cf5f46; color: black; }
--link-color: #518169;
--link-color-visited: #c54e8a;

--code-background: #f5f6f8;
--code-accent-color: #e3e7eb;
--code-accent-color-lite: #eff1f3;
--code-font-color: #5f5f5f;

--code-copy-background: #f5f6f8;
--code-copy-font-color: #6b7784;
--code-copy-border-color: #adb4bc;
--code-copy-success-color: #00c853;

--accent-color: #e9ecef;
--accent-color-lite: #f8f9fa;

--control-icons: #b2bac1;

--footer-background: #112b3c;
--footer-font-color: #ffffff;
--footer-link-color: #ffcc5c;
--footer-link-color-visited: #ffcc5c;
}
@media (prefers-color-scheme: light) {
:root {
--header-background: #4ec58a;
--header-font-color: #ffffff;

--body-background: #ffffff;
--body-font-color: #343a40;

--mark-color: #ffab00;

--button-background: #62cb97;
--button-border-color: #4ec58a;

--link-color: #518169;
--link-color-visited: #c54e8a;

--code-background: #f5f6f8;
--code-accent-color: #e3e7eb;
--code-accent-color-lite: #eff1f3;
--code-font-color: #5f5f5f;

--code-copy-background: #f5f6f8;
--code-copy-font-color: #6b7784;
--code-copy-border-color: #adb4bc;
--code-copy-success-color: #00c853;

--accent-color: #e9ecef;
--accent-color-lite: #f8f9fa;

--control-icons: #b2bac1;

--footer-background: #112b3c;
--footer-font-color: #ffffff;
--footer-link-color: #ffcc5c;
--footer-link-color-visited: #ffcc5c;
}
}

/* Dark mode theming */
:root[color-theme="dark"] {
--header-background: #4ec58a;
--header-font-color: #ffffff;

--body-background: #343a40;
--body-font-color: #ced3d8;

--mark-color: #ffab00;

--button-background: #62cb97;
--button-border-color: #4ec58a;

--link-color: #7ac29e;
--link-color-visited: #c27a9e;

--code-background: #2f353a;
--code-accent-color: #262b2f;
--code-accent-color-lite: #2b3035;
--code-font-color: #b9b9b9;

--code-copy-background: #343a40;
--code-copy-font-color: #6b7784;
--code-copy-border-color: #6b7784;
--code-copy-success-color: #37905c;

--accent-color: #2b3035;
--accent-color-lite: #2f353a;

--control-icons: #b2bac1;

--footer-background: #112b3c;
--footer-font-color: #ffffff;
--footer-link-color: #ffcc5c;
--footer-link-color-visited: #ffcc5c;
}
@media (prefers-color-scheme: dark) {
:root {
--header-background: #4ec58a;
--header-font-color: #ffffff;

--body-background: #343a40;
--body-font-color: #ced3d8;

--mark-color: #ffab00;

--button-background: #62cb97;
--button-border-color: #4ec58a;

--link-color: #7ac29e;
--link-color-visited: #c27a9e;

--code-background: #2f353a;
--code-accent-color: #262b2f;
--code-accent-color-lite: #2b3035;
--code-font-color: #b9b9b9;

--code-copy-background: #343a40;
--code-copy-font-color: #6b7784;
--code-copy-border-color: #6b7784;
--code-copy-success-color: #37905c;

--accent-color: #2b3035;
--accent-color-lite: #2f353a;

--control-icons: #b2bac1;

--footer-background: #112b3c;
--footer-font-color: #ffffff;
--footer-link-color: #ffcc5c;
--footer-link-color-visited: #ffcc5c;
}
}
87 changes: 87 additions & 0 deletions features/code-blocks/index.html

Large diffs are not rendered by default.

Binary file added features/dark-mode/images/geekdoc-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions features/dark-mode/index.html

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions features/icon-sets/index.html

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions features/index.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
93 changes: 93 additions & 0 deletions features/multilingual/index.html

Large diffs are not rendered by default.

Binary file added features/theming/images/theme-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
385 changes: 385 additions & 0 deletions features/theming/index.html

Large diffs are not rendered by default.

Binary file modified fonts/GeekdocIcons.woff
Binary file not shown.
Binary file modified fonts/GeekdocIcons.woff2
Binary file not shown.
5 changes: 0 additions & 5 deletions includes/table.md.part

This file was deleted.

52 changes: 12 additions & 40 deletions index.html

Large diffs are not rendered by default.

Loading

0 comments on commit bfc2181

Please sign in to comment.