-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
62 changed files
with
2,324 additions
and
1,904 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,14 @@ | ||
/*env*/ | ||
.sphinx/venv/ | ||
.sphinx/warnings.txt | ||
.sphinx/.wordlist.dic | ||
.sphinx/.doctrees/ | ||
.sphinx/node_modules/ | ||
package*.json | ||
_build | ||
.DS_Store | ||
__pycache__ | ||
.idea/ | ||
.vscode/ | ||
.sphinx/styles/* | ||
.sphinx/vale.ini |
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,16 @@ | ||
{ | ||
"default": false, | ||
"MD003": { "style": "atx" }, | ||
"MD013": { "code_blocks": false, "tables": false, "stern": true, "line_length": 80}, | ||
"MD014": true, | ||
"MD018": true, | ||
"MD022": true, | ||
"MD023": true, | ||
"MD026": { "punctuation": ".,;。,;"}, | ||
"MD031": { "list_items": false}, | ||
"MD032": true, | ||
"MD035": true, | ||
"MD042": true, | ||
"MD045": true, | ||
"MD052": true | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
File renamed without changes
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,47 @@ | ||
.display-contributors { | ||
color: var(--color-sidebar-link-text); | ||
cursor: pointer; | ||
} | ||
.all-contributors { | ||
display: none; | ||
z-index: 55; | ||
list-style: none; | ||
position: fixed; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
width: 200px; | ||
height: 200px; | ||
overflow-y: scroll; | ||
margin: auto; | ||
padding: 0; | ||
background: var(--color-background-primary); | ||
scrollbar-color: var(--color-foreground-border) transparent; | ||
scrollbar-width: thin; | ||
} | ||
|
||
.all-contributors li:hover { | ||
background: var(--color-sidebar-item-background--hover); | ||
width: 100%; | ||
} | ||
|
||
.all-contributors li a{ | ||
color: var(--color-sidebar-link-text); | ||
padding: 1rem; | ||
display: inline-block; | ||
} | ||
|
||
#overlay { | ||
position: fixed; | ||
display: none; | ||
width: 100%; | ||
height: 100%; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: rgba(0,0,0,0.5); | ||
z-index: 2; | ||
cursor: pointer; | ||
} |
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,12 @@ | ||
$(document).ready(function() { | ||
$(document).on("click", function () { | ||
$(".all-contributors").hide(); | ||
$("#overlay").hide(); | ||
}); | ||
|
||
$('.display-contributors').click(function(event) { | ||
$('.all-contributors').toggle(); | ||
$("#overlay").toggle(); | ||
event.stopPropagation(); | ||
}); | ||
}) |
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes
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,17 @@ | ||
{% extends "page.html" %} | ||
|
||
{% block content -%} | ||
<section> | ||
<h1>Page not found</h1> | ||
<div class="sd-container-fluid sd-sphinx-override sd-mb-4 docutils"> | ||
<div class="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-5 sd-g-xs-5 sd-g-sm-5 sd-g-md-5 sd-g-lg-5 docutils"> | ||
<div class="sd-col sd-d-flex-column docutils"> | ||
{{ body }} | ||
</div> | ||
<div class="sd-col sd-d-flex-column docutils"> | ||
<img alt="Penguin with a question mark" class="align-center" height="283" src="{{ pathto('_static/404.svg',1) }}" width="287" /> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
{%- endblock content %} |
File renamed without changes.
Oops, something went wrong.