-
Notifications
You must be signed in to change notification settings - Fork 4
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
none
committed
Jan 1, 2025
1 parent
fb808c1
commit 6c667bb
Showing
38 changed files
with
3,488 additions
and
0 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,275 @@ | ||
html, | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
height: 100%; | ||
font-family: "Trebuchet MS", Helvetica, sans-serif; | ||
font-size: 11pt; | ||
background-color: #fff; | ||
} | ||
|
||
a, | ||
a:active, | ||
a:visited { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
header { | ||
padding: 5px 11px; | ||
border-bottom: 3px solid #659fdb; | ||
box-shadow: 0 -8px 22px 0; | ||
background-color: #252525; | ||
color: white; | ||
font-size: 9pt; | ||
} | ||
|
||
.wrapper { | ||
min-height: 100%; | ||
} | ||
|
||
header nav, | ||
header strong { | ||
font-size: 11pt; | ||
} | ||
|
||
header nav { | ||
float: right; | ||
} | ||
|
||
footer { | ||
height: 30px; | ||
width: 100%; | ||
border-top: 1px solid #aaa; | ||
margin-top: -31px; | ||
text-align: center; | ||
color: #666; | ||
line-height: 30px; | ||
font-size: 9pt; | ||
background: none repeat scroll 0 0 #ddd; | ||
} | ||
|
||
.container { | ||
padding: 10px 10px 41px 20px; | ||
} | ||
|
||
h1 { | ||
margin: 0; | ||
margin-bottom: 5px; | ||
font-size: 14pt; | ||
font-family: "Trebuchet MS", Helvetica, sans-serif; | ||
} | ||
|
||
#module-header { | ||
border-bottom: 1px solid #bbb; | ||
padding-bottom: 2px; | ||
} | ||
|
||
ul { | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
hr { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
border-bottom: 1px solid #bbb; | ||
} | ||
|
||
p { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
pre { | ||
display: inline; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.code { | ||
font-family: "Lucida Console", Monaco, monospace; | ||
font-size: 10pt; | ||
} | ||
|
||
.decls { | ||
margin-top: 5px; | ||
} | ||
|
||
.decls > dt { | ||
font-family: "Lucida Console", Monaco, monospace; | ||
font-size: 10pt; | ||
line-height: 20px; | ||
padding: 2px 6px; | ||
border: 1px solid #ccc; | ||
background-color: #f0f0f0; | ||
display: table; | ||
width: 100%; | ||
box-sizing: border-box; | ||
white-space: pre-wrap; | ||
} | ||
|
||
.decls > dd { | ||
margin: 10px 0 20px 20px; | ||
font-family: Arial, sans-serif; | ||
font-size: 10pt; | ||
} | ||
|
||
.decls > dd > p { | ||
margin-bottom: 8px; | ||
} | ||
|
||
.decls > dd > dl:not(.decls):not(:first-child) { | ||
padding-top: 5px; | ||
border-top: 1px solid #eee; | ||
} | ||
|
||
.decls > dd > dl:not(.decls) > dt { | ||
display: block; | ||
min-width: 70px; | ||
float: left; | ||
font-weight: bold; | ||
} | ||
|
||
.decls > dd > dl:not(.decls) > dd { | ||
margin-bottom: 2px; | ||
} | ||
|
||
.fixity { | ||
font-style: italic; | ||
font-weight: normal !important; | ||
} | ||
|
||
dd.fixity { | ||
cursor: default; | ||
} | ||
|
||
.word { | ||
display: table-cell; | ||
white-space: nowrap; | ||
width: 0; | ||
} | ||
|
||
.signature { | ||
display: table-cell; | ||
width: 100%; | ||
} | ||
|
||
.name { | ||
white-space: nowrap; | ||
width: 0; | ||
} | ||
|
||
.documented, | ||
.name { | ||
cursor: default; | ||
} | ||
|
||
.documented { | ||
font-weight: bold; | ||
} | ||
|
||
/* The following colours are taken from the conservative 8 color palette given | ||
in http://mkweb.bcgsc.ca/colorblind/palettes.mhtml | ||
*/ | ||
|
||
a.function { | ||
color: #359b73; | ||
} | ||
|
||
.function { | ||
color: #359b73; | ||
} | ||
|
||
a.constructor { | ||
color: #d55e; | ||
} | ||
|
||
.constructor { | ||
color: #d55e; | ||
} | ||
|
||
a.type { | ||
color: #3db7e9; | ||
} | ||
|
||
.type { | ||
color: #3db7e9; | ||
} | ||
|
||
.keyword { | ||
color: inherit; | ||
} | ||
|
||
.boundvar { | ||
color: #f748a5; | ||
} | ||
|
||
.boundvar.implicit { | ||
text-decoration: underline; | ||
} | ||
|
||
ul.names { | ||
border: 1px solid #666; | ||
} | ||
|
||
ul.names li { | ||
padding-left: 5px; | ||
} | ||
|
||
ul.names li a { | ||
display: inline-block; | ||
width: 100%; | ||
padding: 2px 0; | ||
} | ||
|
||
ul.names li:nth-child(odd) { | ||
background-color: #eeeeef; | ||
} | ||
|
||
ul.names li:nth-child(even) { | ||
background-color: white; | ||
} | ||
|
||
body.index .container a:visited { | ||
color: #666; | ||
} | ||
|
||
body.index .container a:hover { | ||
color: #04819e; | ||
} | ||
|
||
.index-wrapper { | ||
display: flex; | ||
flex-direction: row; | ||
column-gap: 5%; | ||
} | ||
|
||
.index-namespace-doc { | ||
flex: 3; | ||
} | ||
|
||
.index-namespace-url { | ||
flex: 1; | ||
} | ||
|
||
@media (max-width: 800px) { | ||
.index-wrapper { | ||
flex-direction: column; | ||
} | ||
|
||
.index-namespace-doc { | ||
width: 100%; | ||
} | ||
|
||
.index-namespace-url { | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.