-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 9bb7f2e with MkDocs version: 1.5.2
- Loading branch information
Unknown
committed
Aug 17, 2023
0 parents
commit fdc7b0c
Showing
202 changed files
with
245,578 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,229 @@ | ||
/* Header */ | ||
|
||
/*.md-header:not(.md-header--shadow) { | ||
background-color: initial !important; | ||
transition: background-color 400ms, transform 0ms, box-shadow 0ms; | ||
} | ||
.md-tabs { | ||
background-color: initial !important; | ||
}*/ | ||
|
||
|
||
|
||
/* Hero */ | ||
|
||
#home-hero { | ||
margin-top: -4.8rem; | ||
padding-top: 4.8rem; | ||
color: white; | ||
font-size: .8rem; | ||
line-height: 1.6; | ||
text-align: center; | ||
} | ||
|
||
#home-hero .hright { | ||
background: var(--md-primary-fg-color--dark); | ||
padding: 3rem .8rem 2rem .8rem; | ||
} | ||
|
||
#home-hero .image { | ||
padding: 0 .8rem; | ||
background: linear-gradient(var(--md-primary-fg-color--dark) 0%, var(--md-primary-fg-color) 50%, transparent 50%); | ||
} | ||
|
||
#home-hero .image img { | ||
max-width: 100%; | ||
} | ||
|
||
#home-hero p.subtitle { | ||
font-size: 2em; | ||
margin-top: 0; | ||
margin-bottom: .4em; | ||
} | ||
|
||
#home-hero p.download a { | ||
display: inline-block; | ||
padding: 8px 42px; | ||
background-color: #4a4; | ||
border-radius: 4px; | ||
color: #fff; | ||
font-size: 1rem; | ||
text-align: center; | ||
|
||
@media screen and (max-width: $screen-xs-max) { | ||
width: 100%; | ||
} | ||
} | ||
#home-hero p.download a:hover, | ||
#home-hero p.download a:active { | ||
text-decoration: none; | ||
background-color: #6b6; | ||
} | ||
|
||
#home-hero p.view { | ||
font-size: .6rem; | ||
margin-bottom: 0; | ||
text-decoration: underline; | ||
} | ||
|
||
|
||
|
||
/* General */ | ||
|
||
article h1:first-child | ||
article, h2:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
article h2 { | ||
clear: both; | ||
} | ||
|
||
|
||
|
||
/* Downloads */ | ||
|
||
article .downloads { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
article .downloads .download { | ||
flex-basis: 25%; | ||
text-align: center; | ||
margin: 1em 0; | ||
} | ||
@media screen and (max-width:60em) { | ||
article .downloads .download { | ||
flex-basis: 50%; | ||
} | ||
} | ||
|
||
article .downloads .download p { | ||
margin: 0; | ||
} | ||
|
||
article .downloads .download img { | ||
margin-bottom: 1em; | ||
} | ||
|
||
|
||
|
||
/* Sources */ | ||
|
||
article .sources { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
article .sources .source { | ||
flex-basis: 20%; | ||
text-align: center; | ||
margin: 1em 0; | ||
} | ||
@media screen and (max-width:40em) { | ||
article .sources .source { | ||
flex-basis: 33.333%; | ||
} | ||
} | ||
|
||
article .sources .source p { | ||
margin: 0; | ||
} | ||
|
||
article .sources .source img { | ||
margin-bottom: 1em; | ||
} | ||
|
||
|
||
|
||
/* Features */ | ||
|
||
article .features { | ||
margin: -1em 0; | ||
} | ||
|
||
article .features .feature { | ||
clear: both; | ||
padding: 1em 0; | ||
overflow: hidden; | ||
border-bottom: 2px dotted var(--md-default-fg-color--lightest); | ||
} | ||
|
||
article .features .feature:last-child { | ||
border-bottom: none; | ||
} | ||
|
||
article .features .feature > p:first-child { | ||
margin: 0; | ||
} | ||
article .features .feature > p:first-child a { | ||
display: none; | ||
} | ||
article .features .feature > p:first-child a:first-child { | ||
display: inline; | ||
} | ||
|
||
article .features .feature img { | ||
width: 30%; | ||
float: left; | ||
margin-right: 5%; | ||
} | ||
@media screen and (max-width:60em) { | ||
article .features .feature img { | ||
width: 40%; | ||
} | ||
} | ||
@media screen and (max-width:40em) { | ||
article .features .feature img { | ||
width: 100%; | ||
float: none; | ||
margin-right: 0; | ||
margin-bottom: 10px; | ||
} | ||
} | ||
|
||
article .features .feature:nth-of-type(2n) img { | ||
float: right; | ||
margin-left: 5%; | ||
margin-right: 0; | ||
} | ||
@media screen and (max-width:40em) { | ||
article .features .feature:nth-of-type(2n) img { | ||
float: none; | ||
margin-left: 0; | ||
} | ||
} | ||
|
||
article .features .feature h3 { | ||
margin-top: 0; | ||
} | ||
|
||
|
||
|
||
/* Flags */ | ||
|
||
article .flags { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
article .flags .flag { | ||
flex-basis: 20%; | ||
text-align: center; | ||
margin: 1em 0; | ||
} | ||
@media screen and (max-width:40em) { | ||
article .flags .flag { | ||
flex-basis: 50%; | ||
} | ||
} | ||
|
||
article .flags .flag p { | ||
margin: 0; | ||
} | ||
|
||
article .flags .flag img { | ||
margin-bottom: 1em; | ||
} |
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,59 @@ | ||
/* Global */ | ||
|
||
:root { | ||
--md-accent-fg-color: #FF8C00 !important; | ||
--md-accent-fg-color--light: #FFAA1E !important; | ||
--md-accent-fg-color--dark: #E16E00 !important; | ||
} | ||
|
||
|
||
|
||
/* Header */ | ||
|
||
.md-tabs .md-icon.external svg { | ||
display: inline-block; | ||
height: 0.7rem; | ||
width: 0.7rem; | ||
padding-bottom: 5px; | ||
} | ||
|
||
@media screen and (min-width: 60em) { | ||
.md-header__source { | ||
width: 10rem; | ||
} | ||
} | ||
|
||
.md-tabs__item:last-child { | ||
margin-left: auto; | ||
} | ||
|
||
|
||
|
||
/* GLightbox */ | ||
|
||
.gdesc-inner h4.gslide-title { | ||
margin-bottom: 0; | ||
} | ||
|
||
|
||
|
||
/* Left navigation menu */ | ||
|
||
@media screen and (min-width:60em) { | ||
nav.md-nav[data-md-level="0"] > ul > li > label, | ||
nav.md-nav[data-md-level="1"] > ul > li > label { | ||
font-size: 1rem; | ||
font-weight: 400 !important; | ||
color: var(--md-typeset-color) !important; | ||
border-bottom: 1px dotted var(--md-accent-fg-color); | ||
padding: 0 0 .1rem 0 !important; | ||
margin: 0 0 .6rem 0; | ||
} | ||
|
||
nav.md-nav[data-md-level="0"] > ul > li > label { | ||
font-size: 1.3rem; | ||
font-weight: 300; | ||
padding: 0 0 .4rem 0 !important; | ||
margin: 0 .6rem .6rem .6rem; | ||
} | ||
} |
Binary file not shown.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Oops, something went wrong.