forked from dauxio/daux.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add admonitions to single-page, Add collapsible to html and single
- Loading branch information
Showing
20 changed files
with
184 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
Collapsible sections can be done using standard HTML | ||
|
||
<details> | ||
<summary>Click to expand!</summary> | ||
|
||
1. A numbered | ||
2. list | ||
* With some | ||
* Sub bullets | ||
</details> | ||
|
||
```html | ||
<details> | ||
<summary>Click to expand!</summary> | ||
|
||
1. A numbered | ||
2. list | ||
* With some | ||
* Sub bullets | ||
</details> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
:root { | ||
--font-family-text: -apple-system, ".SFNSText-Regular", "San Francisco", | ||
"Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, | ||
sans-serif; | ||
--font-family-monospace: Monaco, Menlo, Consolas, "Lucida Console", | ||
"Courier New", monospace; | ||
--font-family-heading: var(--font-family-text); | ||
|
||
--color-info: #00b8d4; | ||
--color-warning: #ff9100; | ||
--color-danger: #f50057; | ||
|
||
--admonition-border-radius: 4px; | ||
--admonition-border-color: #9e9e9e; | ||
--admonition-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125); | ||
--admonition-bg-color: color-mod( | ||
var(--admonition-border-color) lightness(98%) | ||
); | ||
--admonition-title-bg-color: #efefef; | ||
|
||
--admonition-info-border-color: var(--color-info); | ||
--admonition-info-background: color-mod(var(--color-info) lightness(95%)); | ||
--admonition-info-title-background: color-mod( | ||
var(--color-info) lightness(85%) | ||
); | ||
|
||
--admonition-warning-border-color: var(--color-warning); | ||
--admonition-warning-background: color-mod( | ||
var(--color-warning) lightness(95%) | ||
); | ||
--admonition-warning-title-background: color-mod( | ||
var(--color-warning) lightness(85%) | ||
); | ||
|
||
--admonition-danger-border-color: var(--color-danger); | ||
--admonition-danger-background: color-mod( | ||
var(--color-danger) lightness(95%) | ||
); | ||
--admonition-danger-title-background: color-mod( | ||
var(--color-danger) lightness(85%) | ||
); | ||
|
||
--details-bg-color: #efefef; | ||
--details-border-radius: 0.5rem; | ||
--details-padding: 0.6rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"css": [ | ||
"<theme_url>css/main.min.css" | ||
] | ||
} |
Oops, something went wrong.