-
-
Notifications
You must be signed in to change notification settings - Fork 211
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
zeptodoctor
committed
Oct 13, 2024
1 parent
5df87ad
commit f01d73e
Showing
21 changed files
with
16,637 additions
and
2 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 |
---|---|---|
@@ -1 +1 @@ | ||
v0.6.71 | ||
v0.6.72 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
v0.6.71 | ||
v0.6.72 |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,113 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Lato:400,400i'); | ||
|
||
body { | ||
font-family: Lato, "Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; | ||
} | ||
|
||
nav.toc { | ||
padding-top: 0; | ||
background: rgb(240, 240, 240); | ||
line-height: 2em; | ||
cursor: default; | ||
user-select: none; | ||
} | ||
|
||
h1+h2 { | ||
margin-top: 0; | ||
} | ||
|
||
/* Green banner in ToC */ | ||
nav.toc > h1 { | ||
margin-top: 0; | ||
padding-top: 0.4em; | ||
padding-bottom: 0.5em; | ||
border-bottom: 5px solid white; | ||
box-shadow: 0px -2px 5px rgb(60,60,60); | ||
margin-bottom: 0.5em; | ||
background: rgb(60, 150, 60); | ||
|
||
font-style: italic; | ||
font-weight: normal; | ||
font-size: 50pt; | ||
text-transform: lowercase; | ||
text-shadow: 2px 2px 5px rgba(0,0,0,0.2); | ||
color: white; | ||
} | ||
|
||
/* Reduce ToC font size */ | ||
.toctext { | ||
font-size: 10pt; | ||
} | ||
|
||
/* Fade out non-clickable ToC headers */ | ||
nav.toc ul span.toctext { | ||
color: rgb(180, 180, 180); | ||
} | ||
|
||
nav.toc ul .toctext { | ||
color: rgb(100, 100, 100); | ||
} | ||
|
||
nav.toc ul a.toctext:hover { | ||
color: inherit; | ||
background: rgb(220, 220, 220); | ||
cursor: default; | ||
} | ||
|
||
nav.toc li.current > .toctext { | ||
background: linear-gradient(90deg, rgb(245,245,245) 0%, white 90%); | ||
font-weight: normal; | ||
} | ||
|
||
nav.toc ul.internal li.toplevel { | ||
font-weight: normal; | ||
} | ||
|
||
/* Content */ | ||
|
||
article { max-width: none; } | ||
|
||
article > p, article > ul { | ||
max-width: 45em; | ||
} | ||
|
||
/* Links */ | ||
a, a:visited { color: rgb(0, 120, 0); } | ||
article p a { border-bottom: 1px solid rgb(200, 230, 200); } | ||
a:hover, a:visited:hover { color: rgb(0, 80, 0); } | ||
|
||
/* Article Links */ | ||
article p a { border-bottom: 1px solid rgb(200, 230, 200); } | ||
article p a:hover, article a:visited:hover { color: rgb(0, 120, 0); } | ||
article p a:hover { border-bottom: 1px solid rgb(150, 200, 150); } | ||
|
||
/* Doctstrings */ | ||
article section.docstring { | ||
padding: 0.5em 0; | ||
border-left: none; | ||
border-right: none; | ||
border-bottom: none; | ||
} | ||
|
||
/* Code */ | ||
|
||
article pre, article p > code { | ||
background: rgb(245, 250, 245); | ||
} | ||
|
||
article pre { | ||
border: none; | ||
max-width: none; | ||
padding: 1em; | ||
border-radius: 10px 0px 0px 10px; | ||
margin-left: -1em; | ||
margin-right: -2em; | ||
} | ||
|
||
.hljs-comment { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-number { | ||
color: rgb(0, 150, 150); | ||
} |
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.
Oops, something went wrong.