-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
- Loading branch information
There are no files selected for viewing
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> |
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 | |
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.
This file was deleted.
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
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; | ||
} |
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; | ||
} | ||
} |
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.
This file was deleted.
Large diffs are not rendered by default.