2021-05-05 13:09:47 -04:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,700');
|
2021-05-05 22:03:07 -04:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&display=swap');
|
2021-05-05 13:09:47 -04:00
|
|
|
|
|
|
|
// Additional variables
|
|
|
|
$table-border-color: $grey-lt-300;
|
|
|
|
$toc-width: 232px !default;
|
|
|
|
|
|
|
|
// Replaces xl size
|
|
|
|
$media-queries: (
|
|
|
|
xs: 320px,
|
|
|
|
sm: 500px,
|
|
|
|
md: $content-width,
|
|
|
|
lg: $content-width + $nav-width,
|
|
|
|
xl: $content-width + $nav-width + $toc-width
|
|
|
|
);
|
|
|
|
|
|
|
|
body {
|
|
|
|
padding-bottom: 6rem;
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
@include mq(md) {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2021-05-05 22:03:07 -04:00
|
|
|
font-family: "SFMono-Regular", Menlo, "DejaVu Sans Mono", "Droid Sans Mono", Consolas, monospace;
|
2021-05-05 13:09:47 -04:00
|
|
|
font-size: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-nav {
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
|
2021-06-10 17:42:36 -04:00
|
|
|
.nav-category {
|
|
|
|
text-align: start;
|
|
|
|
}
|
|
|
|
|
2021-05-05 13:09:47 -04:00
|
|
|
.main-content {
|
|
|
|
ol {
|
|
|
|
> li {
|
|
|
|
&:before {
|
|
|
|
color: $grey-dk-100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
> li {
|
|
|
|
&:before {
|
|
|
|
color: $grey-dk-100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2021-05-05 22:03:07 -04:00
|
|
|
font-family: "Open Sans Condensed", "Open Sans", sans-serif;
|
|
|
|
font-weight: 400;
|
2021-05-05 13:09:47 -04:00
|
|
|
margin-top: 2.4rem;
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
}
|
2021-05-05 22:03:07 -04:00
|
|
|
h4 {
|
|
|
|
font-size: 14px !important;
|
|
|
|
}
|
2021-05-05 13:09:47 -04:00
|
|
|
.highlight {
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-title {
|
|
|
|
@include mq(md) {
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 0.6rem;
|
|
|
|
padding-left: $sp-5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.external-arrow {
|
|
|
|
position: relative;
|
|
|
|
top: 0.125rem;
|
|
|
|
left: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
padding: 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-border {
|
2021-05-05 22:03:07 -04:00
|
|
|
border: 1px solid $grey-lt-300;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Note, tip, and warning blocks
|
|
|
|
%callout {
|
2021-05-05 22:03:07 -04:00
|
|
|
border: 1px solid $grey-lt-300;
|
2021-05-05 13:09:47 -04:00
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1rem 0;
|
|
|
|
padding: 1rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note {
|
|
|
|
@extend %callout;
|
|
|
|
border-left: 5px solid $blue-300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tip {
|
|
|
|
@extend %callout;
|
2021-05-05 22:03:07 -04:00
|
|
|
border-left: 5px solid $green-100;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
|
|
|
@extend %callout;
|
2021-05-05 22:03:07 -04:00
|
|
|
border-left: 5px solid $red-100;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Labels
|
|
|
|
.label,
|
|
|
|
.label-blue {
|
|
|
|
background-color: $blue-300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-green {
|
|
|
|
background-color: $green-300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-purple {
|
2021-05-05 22:03:07 -04:00
|
|
|
background-color: $purple-200;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-red {
|
2021-05-05 22:03:07 -04:00
|
|
|
background-color: $red-100;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-yellow {
|
2021-05-05 22:03:07 -04:00
|
|
|
color: $grey-dk-300;
|
|
|
|
background-color: $yellow-000;
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Buttons
|
|
|
|
.btn-primary {
|
|
|
|
@include btn-color($white, $btn-primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-purple {
|
2021-05-05 22:03:07 -04:00
|
|
|
@include btn-color($white, $purple-200);
|
2021-05-05 13:09:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-blue {
|
|
|
|
@include btn-color($white, $blue-300);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-green {
|
|
|
|
@include btn-color($white, $green-300);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tables
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border-bottom: $border rgba($table-border-color, 0.5);
|
|
|
|
border-left: $border $table-border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead {
|
|
|
|
th {
|
|
|
|
border-bottom: 1px solid $table-border-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
pre {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keeps labels high and tight next to headers
|
|
|
|
h1 + p.label {
|
|
|
|
margin: -23px 0 0 0;
|
|
|
|
}
|
|
|
|
h2 + p.label {
|
|
|
|
margin: -15px 0 0 0;
|
|
|
|
}
|
|
|
|
h3 + p.label {
|
|
|
|
margin: -10px 0 0 0;
|
|
|
|
}
|
|
|
|
h4 + p.label,
|
|
|
|
h5 + p.label,
|
|
|
|
h6 + p.label {
|
|
|
|
margin: -7px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modifies margins in xl layout to support TOC
|
|
|
|
.side-bar {
|
|
|
|
@include mq(xl) {
|
|
|
|
width: calc((100% - #{$nav-width + $content-width + $toc-width}) / 2 + #{$nav-width});
|
|
|
|
min-width: $nav-width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
@include mq(xl) {
|
|
|
|
margin-left: calc((100% - #{$nav-width + $content-width + $toc-width}) / 2 + #{$nav-width});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adds TOC to righthand side in xl layout
|
|
|
|
.toc {
|
|
|
|
display: none;
|
|
|
|
@include mq(xl) {
|
|
|
|
z-index: 0;
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
top: 59px;
|
|
|
|
right: calc((100% - #{$nav-width + $content-width + $toc-width}) / 2);
|
|
|
|
width: $toc-width;
|
|
|
|
max-height: calc(100% - 118px);
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toc-list {
|
|
|
|
&:before {
|
|
|
|
content: "On this page";
|
|
|
|
// Basically duplicates h4 styling
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 300;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
color: $grey-dk-300;
|
|
|
|
line-height: 1.8;
|
|
|
|
}
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
font-size: 14px;
|
|
|
|
list-style-type: none;
|
|
|
|
background-color: $sidebar-color;
|
|
|
|
padding: $sp-6 $sp-4;
|
|
|
|
margin-left: $sp-6;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toc-item {
|
|
|
|
padding-top: .25rem;
|
|
|
|
padding-bottom: .25rem;
|
|
|
|
}
|