2016-03-17 20:05:42 +00:00
|
|
|
/* Insert here special css for hugo theme, on top of any other imported css */
|
|
|
|
|
|
|
|
/* Table of contents */
|
|
|
|
|
2020-10-05 13:10:14 +00:00
|
|
|
@media print {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
.progress {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 20:05:42 +00:00
|
|
|
.progress ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
2021-03-16 17:28:19 +00:00
|
|
|
padding: 0 15px;
|
2016-03-17 20:05:42 +00:00
|
|
|
}
|
|
|
|
|
2016-03-26 02:28:38 +00:00
|
|
|
#TableOfContents {
|
|
|
|
font-size: 13px !important;
|
|
|
|
max-height: 85vh;
|
|
|
|
overflow: auto;
|
2021-03-16 17:28:19 +00:00
|
|
|
padding: 15px 5px !important;
|
2016-03-26 02:28:38 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 17:28:19 +00:00
|
|
|
#TableOfContents > ul > li > a {
|
2016-03-26 02:28:38 +00:00
|
|
|
font-weight: bold;
|
2016-03-17 20:05:42 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 23:30:29 +00:00
|
|
|
body {
|
|
|
|
font-size: 16px !important;
|
|
|
|
color: #323232 !important;
|
|
|
|
}
|
|
|
|
|
2016-03-26 02:28:38 +00:00
|
|
|
#body a.highlight, #body a.highlight:hover, #body a.highlight:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
#body a.highlight {
|
|
|
|
line-height: 1.1;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#body a.highlight:after {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
height: 1px;
|
|
|
|
width: 0%;
|
2016-03-28 22:35:18 +00:00
|
|
|
background-color: #0082a7; /*#CE3B2F*/
|
2016-03-26 02:28:38 +00:00
|
|
|
-webkit-transition: width 0.5s ease;
|
|
|
|
-moz-transition: width 0.5s ease;
|
|
|
|
-ms-transition: width 0.5s ease;
|
|
|
|
transition: width 0.5s ease;
|
|
|
|
}
|
|
|
|
#body a.highlight:hover:after, #body a.highlight:focus:after {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-10-05 14:14:49 +00:00
|
|
|
@media print {
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 20:05:42 +00:00
|
|
|
.progress {
|
|
|
|
position:absolute;
|
|
|
|
background-color: rgba(246, 246, 246, 0.97);
|
|
|
|
width: auto;
|
|
|
|
border: thin solid #ECECEC;
|
|
|
|
display:none;
|
2016-03-18 18:00:27 +00:00
|
|
|
z-index:200;
|
2016-03-17 20:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#toc-menu {
|
|
|
|
border-right: thin solid #DAD8D8 !important;
|
|
|
|
padding-right: 1rem !important;
|
|
|
|
margin-right: 0.5rem !important;
|
|
|
|
}
|
2020-10-05 13:10:14 +00:00
|
|
|
@media print {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
#toc-menu {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 18:00:27 +00:00
|
|
|
|
2016-03-26 02:28:38 +00:00
|
|
|
#sidebar-toggle-span {
|
|
|
|
border-right: thin solid #DAD8D8 !important;
|
|
|
|
padding-right: 0.5rem !important;
|
|
|
|
margin-right: 1rem !important;
|
|
|
|
}
|
2020-10-05 13:10:14 +00:00
|
|
|
@media print {
|
|
|
|
/* we don't need this while printing */
|
|
|
|
#sidebar-toggle-span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2016-03-26 02:28:38 +00:00
|
|
|
|
2016-03-27 12:24:51 +00:00
|
|
|
.btn {
|
|
|
|
display: inline-block !important;
|
|
|
|
padding: 6px 12px !important;
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
font-size: 14px !important;
|
|
|
|
font-weight: normal !important;
|
|
|
|
line-height: 1.42857143 !important;
|
|
|
|
text-align: center !important;
|
|
|
|
white-space: nowrap !important;
|
|
|
|
vertical-align: middle !important;
|
|
|
|
-ms-touch-action: manipulation !important;
|
|
|
|
touch-action: manipulation !important;
|
|
|
|
cursor: pointer !important;
|
|
|
|
-webkit-user-select: none !important;
|
|
|
|
-moz-user-select: none !important;
|
|
|
|
-ms-user-select: none !important;
|
|
|
|
user-select: none !important;
|
|
|
|
background-image: none !important;
|
|
|
|
border: 1px solid transparent !important;
|
|
|
|
border-radius: 4px !important;
|
|
|
|
-webkit-transition: all 0.15s !important;
|
|
|
|
-moz-transition: all 0.15s !important;
|
|
|
|
transition: all 0.15s !important;
|
|
|
|
}
|
|
|
|
.btn:focus {
|
|
|
|
/*outline: thin dotted;
|
|
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
|
|
outline-offset: -2px;*/
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
.btn:hover,
|
|
|
|
.btn:focus {
|
|
|
|
color: #2b2b2b !important;
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-default {
|
|
|
|
color: #333 !important;
|
|
|
|
background-color: #fff !important;
|
|
|
|
border-color: #ccc !important;
|
|
|
|
}
|
|
|
|
.btn-default:hover,
|
|
|
|
.btn-default:focus,
|
|
|
|
.btn-default:active {
|
|
|
|
color: #fff !important;
|
|
|
|
background-color: #9e9e9e !important;
|
|
|
|
border-color: #9e9e9e !important;
|
|
|
|
}
|
|
|
|
.btn-default:active {
|
|
|
|
background-image: none !important;
|
|
|
|
}
|
2016-03-30 17:33:02 +00:00
|
|
|
|
|
|
|
/* anchors */
|
|
|
|
.anchor {
|
|
|
|
color: #00bdf3;
|
|
|
|
font-size: 0.5em;
|
|
|
|
cursor:pointer;
|
|
|
|
visibility:hidden;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
position: absolute;
|
|
|
|
margin-top:0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor {
|
|
|
|
visibility:visible;
|
|
|
|
}
|
2016-04-11 23:30:29 +00:00
|
|
|
|
|
|
|
/* Redfines headers style */
|
|
|
|
|
|
|
|
h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
|
|
|
font-weight: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
line-height: 110% !important;
|
|
|
|
margin: 2.5rem 0 1.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 2rem;
|
|
|
|
line-height: 110% !important;
|
|
|
|
margin: 2rem 0 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 110% !important;
|
|
|
|
margin: 1.5rem 0 0.75rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
2016-11-24 19:43:37 +00:00
|
|
|
font-size: 1rem;
|
2016-04-11 23:30:29 +00:00
|
|
|
line-height: 110% !important;
|
|
|
|
margin: 1rem 0 0.2rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 0.5rem;
|
|
|
|
line-height: 110% !important;
|
|
|
|
margin: 0.5rem 0 0.2rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
2017-01-27 15:12:23 +00:00
|
|
|
|
|
|
|
figcaption h4 {
|
|
|
|
font-weight: 300 !important;
|
|
|
|
opacity: .85;
|
|
|
|
font-size: 1em;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: -1.5em;
|
2017-07-31 20:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.select-style {
|
|
|
|
border: 0;
|
|
|
|
width: 150px;
|
|
|
|
border-radius: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-style svg {
|
|
|
|
fill: #ccc;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
pointer-events: none;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-style svg:hover {
|
|
|
|
fill: #e6e6e6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-style select {
|
|
|
|
padding: 0;
|
|
|
|
width: 130%;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
background: transparent;
|
|
|
|
background-image: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: auto;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-style select:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-style :hover {
|
|
|
|
cursor: pointer;
|
2017-11-23 18:46:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only all and (max-width: 47.938em) {
|
|
|
|
#breadcrumbs .links, #top-github-link-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-10-05 13:10:14 +00:00
|
|
|
@media print {
|
|
|
|
#breadcrumbs .links {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
2017-11-23 18:46:56 +00:00
|
|
|
|
|
|
|
.is-sticky #top-bar {
|
2021-08-23 21:51:52 +00:00
|
|
|
box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.1);
|
2020-10-05 13:10:14 +00:00
|
|
|
}
|
|
|
|
@media print {
|
|
|
|
/* the header is sticky which is not suited for print;
|
|
|
|
because there are inline styles set, we have to use !important here
|
|
|
|
to remove those styles in print;
|
|
|
|
chrome will repeat the header otherwise if you've already
|
|
|
|
scrolled the page before printing */
|
|
|
|
.is-sticky #top-bar{
|
|
|
|
position: inherit !important; /* IE11 doesn't know "initial" here */
|
|
|
|
width: inherit !important;
|
|
|
|
box-shadow: initial;
|
|
|
|
}
|
|
|
|
}
|