mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-14 23:33:15 +00:00
87 lines
1.4 KiB
CSS
87 lines
1.4 KiB
CSS
* {
|
|
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
|
|
}
|
|
|
|
|
|
.container {
|
|
max-width: 60em;
|
|
margin: 0 auto;
|
|
padding-left: 0.01em 1em;
|
|
}
|
|
|
|
.directory-pkg {
|
|
width: 20em;
|
|
}
|
|
|
|
.directory-child .pkg-name {
|
|
position: relative;
|
|
left: 2em;
|
|
width: 18em;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
word-break: keep-all;
|
|
word-wrap: break-word;
|
|
tab-size: 8;
|
|
font-family: Consolas,Liberation Mono,Menlo,monospace!important;
|
|
background-color: #f8f8f8;
|
|
color: #202224;
|
|
border: 1px solid #c6c8ca;
|
|
border-radius: 0.25rem;
|
|
padding: 0.625rem;
|
|
}
|
|
|
|
pre a {
|
|
font-family: Consolas,Liberation Mono,Menlo,monospace!important;
|
|
text-decoration: none;
|
|
/*font-weight: bold;*/
|
|
color: #00bfd5;
|
|
}
|
|
|
|
.documentation pre a.code-procedure {
|
|
color: #079300;
|
|
}
|
|
|
|
.documentation-source {
|
|
display: inline;
|
|
float: right;
|
|
}
|
|
|
|
.documentation-source a {
|
|
text-decoration: none;
|
|
color: #666666;
|
|
}
|
|
.documentation-source a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a > .a-hidden {
|
|
opacity: 0;
|
|
}
|
|
a:hover > .a-hidden {
|
|
opacity: 100;
|
|
}
|
|
|
|
ul.documentation-breadcrumb {
|
|
list-style: none;
|
|
}
|
|
|
|
ul.documentation-breadcrumb li {
|
|
display: inline;
|
|
}
|
|
|
|
ul.documentation-breadcrumb li+li:before {
|
|
padding: 0.2rem;
|
|
color: black;
|
|
content: "/\00a0";
|
|
}
|
|
|
|
.code-inline {
|
|
font-family: Consolas,Liberation Mono,Menlo,monospace!important;
|
|
background-color: #f8f8f8;
|
|
color: #202224;
|
|
border: 1px solid #c6c8ca;
|
|
border-radius: 0.25rem;
|
|
padding: 0.125rem;
|
|
} |