-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed a8cb507 to 0.1 with MkDocs 1.6.0 and mike 2.1.3
- Loading branch information
Showing
4 changed files
with
263 additions
and
0 deletions.
There are no files selected for viewing
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.
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 @@ | ||
:root { | ||
--md-admonition-icon--ucmdhelp: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13zM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm9 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0zM6.92 6.085c.081-.16.19-.299.34-.398.145-.097.371-.187.74-.187.28 0 .553.087.738.225A.613.613 0 0 1 9 6.25c0 .177-.04.264-.077.318a.956.956 0 0 1-.277.245c-.076.051-.158.1-.258.161l-.007.004a7.728 7.728 0 0 0-.313.195 2.416 2.416 0 0 0-.692.661.75.75 0 0 0 1.248.832.956.956 0 0 1 .276-.245 6.3 6.3 0 0 1 .26-.16l.006-.004c.093-.057.204-.123.313-.195.222-.149.487-.355.692-.662.214-.32.329-.702.329-1.15 0-.76-.36-1.348-.863-1.725A2.76 2.76 0 0 0 8 4c-.631 0-1.155.16-1.572.438-.413.276-.68.638-.849.977a.75.75 0 1 0 1.342.67z"/></svg>') | ||
} | ||
.md-typeset .admonition.ucmdhelp, | ||
.md-typeset details.ucmdhelp { | ||
border-color: rgb(43, 155, 70); | ||
} | ||
.md-typeset .ucmdhelp > .admonition-title, | ||
.md-typeset .ucmdhelp > summary { | ||
background-color: rgba(43, 155, 70, 0.1); | ||
border: rgb(43, 155, 70); | ||
} | ||
.md-typeset .ucmdhelp code { | ||
font-family: APL; | ||
font-size: 1.1em; | ||
} | ||
.md-typeset .ucmdhelp > .admonition-title::before, | ||
.md-typeset .ucmdhelp > summary::before { | ||
background-color: rgb(43, 155, 70); | ||
-webkit-mask-image: var(--md-admonition-icon--ucmdhelp); | ||
mask-image: var(--md-admonition-icon--ucmdhelp); | ||
} |
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,43 @@ | ||
@font-face { | ||
font-family: APL; | ||
src: local("APL385 Unicode"), url("../assets/apl385.ttf"); | ||
} | ||
.language-APL { | ||
font-family: APL!important; | ||
line-height: 1.2em!important; | ||
} | ||
code { | ||
font-family: APL; | ||
} | ||
.md-logo > img{ | ||
width: 7rem!important; | ||
height: 1.2rem!important; | ||
} | ||
@media screen and (max-width: 76.1875em) { | ||
.md-logo > img{ | ||
width: 10rem!important; | ||
height: 1.8rem!important; | ||
} | ||
} | ||
/* Custom colors */ | ||
:root { | ||
--md-primary-fg-color: #ED7F00; | ||
--md-primary-fg-color--dark: #563336; | ||
--md-default-bg-color: #F8F8F8; | ||
} | ||
/* Code copy only input (see CONTRIBUTING.md) */ | ||
pre + pre > button, pre + hr { | ||
display: none!important; | ||
} | ||
pre > code { | ||
padding-bottom: 1em!important; | ||
} | ||
hr + pre > button { | ||
top: -0.2em!important; | ||
} | ||
pre + pre , hr + pre { | ||
margin-top: -1.8em!important; | ||
} | ||
pre + pre > code, hr + pre > code { | ||
padding-top: 0.2em!important; | ||
} |