2022-02-16 12:53:24 +00:00
|
|
|
#sidebar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#body {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2021-09-29 19:34:42 +00:00
|
|
|
#body #navigation {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
html,
|
|
|
|
body #body{
|
|
|
|
font-size: 8.9pt;
|
|
|
|
}
|
2022-02-17 07:47:04 +00:00
|
|
|
body {
|
|
|
|
background-color: white;
|
|
|
|
}
|
2021-09-29 21:24:16 +00:00
|
|
|
pre code {
|
|
|
|
font-size: 8.3pt;
|
|
|
|
}
|
2021-10-06 18:36:23 +00:00
|
|
|
#body .padding {
|
|
|
|
/* remove page padding - this can be set exactly in the print setup */
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-02-17 18:21:20 +00:00
|
|
|
code.copy-to-clipboard-code {
|
2021-09-29 19:34:42 +00:00
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-right-width: 1px;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
#body #top-bar{
|
|
|
|
background-color: #fff; /* avoid background bleeding*/
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
border-radius: 0;
|
|
|
|
padding-left: 0; /* for print, we want to align with the footer to ease the layout */
|
|
|
|
color: #777;
|
|
|
|
}
|
2022-02-17 23:09:06 +00:00
|
|
|
.navigation,
|
2021-09-29 19:34:42 +00:00
|
|
|
#top-github-link {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#body #breadcrumbs {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#body #breadcrumbs .links {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2022-02-17 18:21:20 +00:00
|
|
|
.copy-to-clipboard-button {
|
2021-09-29 19:34:42 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2021-10-06 18:35:57 +00:00
|
|
|
|
2021-10-07 19:28:07 +00:00
|
|
|
#body h1, #body h2, #body h3, #body h4, #body h5, #body h6 {
|
|
|
|
/* better contrast for colored elements */
|
2022-02-13 16:01:53 +00:00
|
|
|
color: black;
|
2021-10-07 19:28:07 +00:00
|
|
|
}
|
2021-10-06 18:35:57 +00:00
|
|
|
#body th, #body td,
|
|
|
|
#body code, #body strong, #body b,
|
|
|
|
#body li, #body dd, #body dt,
|
|
|
|
#body p,
|
|
|
|
#body .anchor,
|
2021-10-07 19:28:07 +00:00
|
|
|
#body a {
|
2021-10-06 18:35:57 +00:00
|
|
|
/* better contrast for colored elements */
|
|
|
|
color: black;
|
|
|
|
}
|
2022-02-17 07:47:04 +00:00
|
|
|
#body pre,
|
|
|
|
#body code {
|
|
|
|
background-color: white;
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
2021-10-06 18:35:57 +00:00
|
|
|
|
2021-09-29 21:04:20 +00:00
|
|
|
hr{
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
#chapter h1 {
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
2021-09-29 19:34:42 +00:00
|
|
|
.footline {
|
|
|
|
/* in print mode show footer line to signal reader the end of document */
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
color: #777;
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
padding-top: .75rem;
|
|
|
|
}
|
|
|
|
#body #body-inner a {
|
|
|
|
/* in print we want to distinguish links in our content from
|
|
|
|
normal text even if printed black/white;
|
|
|
|
don't use a.highlight in selector to also get links that are
|
|
|
|
put as HTML into markdown */
|
|
|
|
text-decoration-line: underline;
|
|
|
|
}
|
|
|
|
#toc-menu {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#sidebar-toggle-span {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#breadcrumbs .links {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
#top-bar{
|
|
|
|
/* the header is sticky which is not suitable for print; */
|
|
|
|
position: inherit; /* IE11 doesn't know "initial" here */
|
|
|
|
}
|
2021-10-06 17:53:33 +00:00
|
|
|
#top-bar.is-sticky {
|
|
|
|
box-shadow: initial;
|
|
|
|
}
|
2021-09-29 19:34:42 +00:00
|
|
|
#body .tab-nav-button:not(.active) {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
2021-09-29 20:49:24 +00:00
|
|
|
#head-tags {
|
|
|
|
display: none;
|
2021-10-07 19:28:07 +00:00
|
|
|
}
|
|
|
|
mark {
|
|
|
|
background: inherit;
|
|
|
|
color: inherit;
|
2021-11-09 20:36:14 +00:00
|
|
|
}
|
|
|
|
.mermaid > svg:hover {
|
|
|
|
border-color: transparent;
|
2022-02-17 07:47:04 +00:00
|
|
|
}
|
|
|
|
div.box {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
div.box > .box-content {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.btn-default,
|
|
|
|
#body .tab-nav-button {
|
|
|
|
color: black !important;
|
|
|
|
}
|
|
|
|
#body .tab-nav-button.active {
|
|
|
|
background-color: white !important;
|
|
|
|
border-bottom-color: white !important;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
#body .tab-nav-button:not(.active) {
|
|
|
|
opacity: 1;
|
|
|
|
}
|