2018-12-23 21:26:21 +01:00
|
|
|
/* Sticky footer */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic idea: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
|
|
|
|
* Details: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css
|
|
|
|
*
|
|
|
|
* .Site -> body > .container
|
|
|
|
* .Site-content -> body > .container .row
|
|
|
|
* .footer -> footer
|
|
|
|
*
|
|
|
|
* Key idea seems to be to ensure that .container and __all its parents__
|
|
|
|
* have height set to 100%
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
body {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-12-23 21:26:21 +01:00
|
|
|
body > .container {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > .container .row {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
margin-top: 45px;
|
|
|
|
padding: 35px 0 36px;
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
color: #666;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
footer p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
footer div {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
footer .pkgdown {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
footer p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.icon {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix bug in bootstrap (only seen in firefox) */
|
|
|
|
summary {
|
|
|
|
display: list-item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Typographic tweaking ---------------------------------*/
|
|
|
|
|
|
|
|
.contents .page-header {
|
|
|
|
margin-top: calc(-60px + 1em);
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
dd {
|
|
|
|
margin-left: 3em;
|
|
|
|
}
|
|
|
|
|
2018-12-23 21:26:21 +01:00
|
|
|
/* Section anchors ---------------------------------*/
|
|
|
|
|
|
|
|
a.anchor {
|
|
|
|
margin-left: -30px;
|
|
|
|
display:inline-block;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
visibility: hidden;
|
|
|
|
|
|
|
|
background-image: url(./link.svg);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 20px 20px;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hasAnchor:hover a.anchor {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.hasAnchor:hover a.anchor {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Fixes for fixed navbar --------------------------*/
|
|
|
|
|
|
|
|
.contents h1, .contents h2, .contents h3, .contents h4 {
|
|
|
|
padding-top: 60px;
|
|
|
|
margin-top: -40px;
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
/* Navbar submenu --------------------------*/
|
|
|
|
|
|
|
|
.dropdown-submenu {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu>.dropdown-menu {
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
margin-top: -6px;
|
|
|
|
margin-left: -1px;
|
|
|
|
border-radius: 0 6px 6px 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu:hover>.dropdown-menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu>a:after {
|
|
|
|
display: block;
|
|
|
|
content: " ";
|
|
|
|
float: right;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 0 5px 5px;
|
|
|
|
border-left-color: #cccccc;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-right: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu:hover>a:after {
|
|
|
|
border-left-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu.pull-left {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
|
|
|
left: -100%;
|
|
|
|
margin-left: 10px;
|
|
|
|
border-radius: 6px 0 6px 6px;
|
|
|
|
}
|
|
|
|
|
2018-12-23 21:26:21 +01:00
|
|
|
/* Sidebar --------------------------*/
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
#pkgdown-sidebar {
|
2018-12-23 21:26:21 +01:00
|
|
|
margin-top: 30px;
|
2019-09-25 15:43:22 +02:00
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 70px;
|
2018-12-23 21:26:21 +01:00
|
|
|
}
|
2020-04-13 21:09:56 +02:00
|
|
|
|
|
|
|
#pkgdown-sidebar h2 {
|
2018-12-23 21:26:21 +01:00
|
|
|
font-size: 1.5em;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
#pkgdown-sidebar h2:first-child {
|
2018-12-23 21:26:21 +01:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
#pkgdown-sidebar .list-unstyled li {
|
2018-12-23 21:26:21 +01:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-04-13 21:09:56 +02:00
|
|
|
/* bootstrap-toc tweaks ------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* All levels of nav */
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav > li > a {
|
|
|
|
padding: 4px 20px 4px 6px;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: 400;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav > li > a:hover,
|
|
|
|
nav[data-toggle='toc'] .nav > li > a:focus {
|
|
|
|
padding-left: 5px;
|
|
|
|
color: inherit;
|
|
|
|
border-left: 1px solid #878787;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav > .active > a,
|
|
|
|
nav[data-toggle='toc'] .nav > .active:hover > a,
|
|
|
|
nav[data-toggle='toc'] .nav > .active:focus > a {
|
|
|
|
padding-left: 5px;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: 400;
|
|
|
|
color: inherit;
|
|
|
|
border-left: 2px solid #878787;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Nav: second level (shown on .active) */
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav .nav {
|
|
|
|
display: none; /* Hide by default, but at >768px, show it */
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav .nav > li > a {
|
|
|
|
padding-left: 16px;
|
|
|
|
font-size: 1.35rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav .nav > li > a:hover,
|
|
|
|
nav[data-toggle='toc'] .nav .nav > li > a:focus {
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav[data-toggle='toc'] .nav .nav > .active > a,
|
|
|
|
nav[data-toggle='toc'] .nav .nav > .active:hover > a,
|
|
|
|
nav[data-toggle='toc'] .nav .nav > .active:focus > a {
|
|
|
|
padding-left: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 1.35rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* orcid ------------------------------------------------------------------- */
|
|
|
|
|
2018-12-23 21:26:21 +01:00
|
|
|
.orcid {
|
2020-04-13 21:09:56 +02:00
|
|
|
font-size: 16px;
|
|
|
|
color: #A6CE39;
|
2019-09-25 15:43:22 +02:00
|
|
|
/* margins are required by official ORCID trademark and display guidelines */
|
|
|
|
margin-left:4px;
|
|
|
|
margin-right:4px;
|
2018-12-23 21:26:21 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reference index & topics ----------------------------------------------- */
|
|
|
|
|
|
|
|
.ref-index th {font-weight: normal;}
|
|
|
|
|
2020-08-10 12:46:03 +02:00
|
|
|
.ref-index td {vertical-align: top; min-width: 100px}
|
2018-12-23 21:26:21 +01:00
|
|
|
.ref-index .icon {width: 40px;}
|
|
|
|
.ref-index .alias {width: 40%;}
|
|
|
|
.ref-index-icons .alias {width: calc(40% - 40px);}
|
|
|
|
.ref-index .title {width: 60%;}
|
|
|
|
|
|
|
|
.ref-arguments th {text-align: right; padding-right: 10px;}
|
2020-08-10 12:46:03 +02:00
|
|
|
.ref-arguments th, .ref-arguments td {vertical-align: top; min-width: 100px}
|
2018-12-23 21:26:21 +01:00
|
|
|
.ref-arguments .name {width: 20%;}
|
|
|
|
.ref-arguments .desc {width: 80%;}
|
|
|
|
|
|
|
|
/* Nice scrolling for wide elements --------------------------------------- */
|
|
|
|
|
|
|
|
table {
|
|
|
|
display: block;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Syntax highlighting ---------------------------------------------------- */
|
|
|
|
|
|
|
|
pre {
|
|
|
|
word-wrap: normal;
|
|
|
|
word-break: normal;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre, code {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre code {
|
|
|
|
overflow: auto;
|
|
|
|
word-wrap: normal;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre .img {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre .img img {
|
|
|
|
background-color: #fff;
|
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
code a, pre a {
|
|
|
|
color: #375f84;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.sourceLine:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fl {color: #1514b5;}
|
|
|
|
.fu {color: #000000;} /* function */
|
|
|
|
.ch,.st {color: #036a07;} /* string */
|
|
|
|
.kw {color: #264D66;} /* keyword */
|
|
|
|
.co {color: #888888;} /* comment */
|
|
|
|
|
|
|
|
.message { color: black; font-weight: bolder;}
|
|
|
|
.error { color: orange; font-weight: bolder;}
|
|
|
|
.warning { color: #6A0366; font-weight: bolder;}
|
|
|
|
|
|
|
|
/* Clipboard --------------------------*/
|
|
|
|
|
|
|
|
.hasCopyButton {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-copy-ex {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hasCopyButton:hover button.btn-copy-ex {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2019-09-25 15:43:22 +02:00
|
|
|
/* headroom.js ------------------------ */
|
|
|
|
|
|
|
|
.headroom {
|
|
|
|
will-change: transform;
|
|
|
|
transition: transform 200ms linear;
|
|
|
|
}
|
|
|
|
.headroom--pinned {
|
|
|
|
transform: translateY(0%);
|
|
|
|
}
|
|
|
|
.headroom--unpinned {
|
|
|
|
transform: translateY(-100%);
|
|
|
|
}
|
|
|
|
|
2018-12-23 21:26:21 +01:00
|
|
|
/* mark.js ----------------------------*/
|
|
|
|
|
|
|
|
mark {
|
|
|
|
background-color: rgba(255, 255, 51, 0.5);
|
|
|
|
border-bottom: 2px solid rgba(255, 153, 51, 0.3);
|
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vertical spacing after htmlwidgets */
|
|
|
|
.html-widget {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2019-09-25 15:43:22 +02:00
|
|
|
|
|
|
|
/* fontawesome ------------------------ */
|
|
|
|
|
|
|
|
.fab {
|
|
|
|
font-family: "Font Awesome 5 Brands" !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* don't display links in code chunks when printing */
|
|
|
|
/* source: https://stackoverflow.com/a/10781533 */
|
|
|
|
@media print {
|
|
|
|
code a:link:after, code a:visited:after {
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
}
|