2019-09-25 01:12:11 +04:00
|
|
|
:root {
|
|
|
|
--color-primary-brand: #3AA0FF;
|
|
|
|
--color-secondary-brand: #FC683A;
|
|
|
|
--color-accent: #37D7C3;
|
|
|
|
--color-primary-text: #0D0F33;
|
|
|
|
--color-secondary-text: #5A5C74;
|
|
|
|
--color-gray: #EBEBEB;
|
|
|
|
--color-light-blue: #EBF6FF;
|
|
|
|
--color-light-gray: #FAFAFA;
|
|
|
|
--color-white: #FFFFFF;
|
|
|
|
--color-code-background1: #EFF4F7;
|
|
|
|
--color-code-background2: #D2DFE9;
|
|
|
|
--padding-level-1: 20px;
|
|
|
|
--padding-level-2: 25px;
|
|
|
|
--padding-level-3: 30px;
|
|
|
|
--padding-level-4: 45px;
|
|
|
|
--padding-level-5: 60px;
|
|
|
|
--padding-level-6: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, .landing .headline {
|
|
|
|
font-family: "DM Sans", sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
body, .body, .headline, .subhead, .footnote {
|
|
|
|
font-family: "Open Sans", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mono {
|
|
|
|
font-family: "Source Code Pro", monospace;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 2.625rem;
|
|
|
|
}
|
|
|
|
.landing h1 {
|
|
|
|
font-size: 4.5rem;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 2.25rem;
|
|
|
|
}
|
|
|
|
.landing h2 {
|
|
|
|
font-size: 3rem;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
.landing h3 {
|
|
|
|
font-size: 2.25rem;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
}
|
|
|
|
.landing h4 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
.headline {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.landing .headline {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
}
|
|
|
|
body, .body {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.landing .body, .landing {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
}
|
|
|
|
.subhead {
|
|
|
|
font-size: 0.875rem;
|
|
|
|
}
|
|
|
|
.landing .subhead {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.footnote {
|
|
|
|
font-size: 0.75rem;
|
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.projectTitle small {
|
|
|
|
max-width: 700px;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 0.7em;
|
2019-05-13 17:55:32 +04:00
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.fixedHeaderContainer header .headerTitleWithLogo {
|
|
|
|
display: none;
|
2019-05-13 17:55:32 +04:00
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.fixedHeaderContainer header img {}
|
|
|
|
|
|
|
|
.nav-footer {
|
2019-09-25 01:12:11 +04:00
|
|
|
background: var(--color-primary-text);
|
2019-05-13 17:55:32 +04:00
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.navigationSlider .slidingNav {
|
|
|
|
background: #1A1A1A;
|
2019-05-13 17:55:32 +04:00
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.homeContainer {
|
|
|
|
box-shadow: inset 0 -10px 10px -6px rgba(177, 176, 176, 0.2);
|
|
|
|
background: #f6f4f4;
|
2019-05-24 17:16:38 +04:00
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.homeContainer .hljs {
|
2019-05-24 17:16:38 +04:00
|
|
|
text-align: left;
|
2019-06-03 20:16:05 +04:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
.tabs {
|
2019-06-06 21:51:38 +04:00
|
|
|
max-width: 800px;
|
2019-06-03 20:16:05 +04:00
|
|
|
margin: 0 auto;
|
|
|
|
border-top: none;
|
|
|
|
border-bottom: 4px solid #e0e0e0;
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
.tabs .nav-tabs > div {
|
2019-06-06 21:51:38 +04:00
|
|
|
cursor: pointer;
|
|
|
|
color: #24292e;
|
2019-06-10 22:15:14 +04:00
|
|
|
border-bottom: none;
|
2019-06-11 05:37:12 +04:00
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
|
|
|
.tab-content {
|
|
|
|
padding-top: 12px;
|
2019-06-06 21:51:38 +04:00
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
.tabs .nav-tabs > div.active {
|
2019-06-06 21:51:38 +04:00
|
|
|
border-bottom: 4px solid #1A1A1A;
|
|
|
|
}
|
|
|
|
|
2019-06-10 22:15:14 +04:00
|
|
|
|
|
|
|
.homeContainer .tabs .nav-tabs > div:last-of-type {
|
|
|
|
cursor: default;
|
|
|
|
color: #24292e64;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
.tab-content {
|
2019-06-03 20:16:05 +04:00
|
|
|
border-top: 4px solid #e0e0e0;
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
.nav-tabs {
|
2019-06-03 20:16:05 +04:00
|
|
|
border: none;
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
border: 1px solid #B2210C;
|
|
|
|
color: #B2210C;
|
|
|
|
}
|
2019-06-06 19:59:03 +04:00
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
.button:hover, .promoSection .buttonWrapper:first-of-type > a.button {
|
|
|
|
background: #B2210C;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-06-06 19:59:03 +04:00
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
blockquote {
|
2019-06-11 05:37:12 +04:00
|
|
|
background-color: rgba(26, 26, 26, 0.3);
|
|
|
|
border-left: 8px solid rgba(26, 26, 26, 0.1);
|
|
|
|
color: rgba(255,255,255, 1);
|
2019-06-06 19:59:03 +04:00
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
blockquote code {
|
2019-06-13 04:50:55 +04:00
|
|
|
opacity: 0.5;
|
2019-06-11 05:37:12 +04:00
|
|
|
}
|
|
|
|
/*
|
2019-06-06 19:59:03 +04:00
|
|
|
blockquote a {
|
|
|
|
color: rgba(255,255,255, 0.8);
|
|
|
|
border-bottom: 1px solid rgba(255,255,255, 0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote a:hover {
|
|
|
|
color: rgba(255,255,255, 1);
|
|
|
|
border-bottom: 1px solid rgba(255,255,255, 1);
|
2019-06-11 05:37:12 +04:00
|
|
|
} */
|
2019-06-06 19:59:03 +04:00
|
|
|
/*
|
|
|
|
blockquote {
|
|
|
|
background-color: rgba(252, 214, 0, 0.687);
|
|
|
|
border-left-color: rgba(240, 210, 37, 1);
|
|
|
|
color: rgba(0, 0, 0, 0.632);
|
|
|
|
} */
|
2019-06-03 20:16:05 +04:00
|
|
|
|
|
|
|
a {
|
2019-06-11 05:37:12 +04:00
|
|
|
color: rgba(178, 33, 12, 0.8);
|
2019-06-03 20:16:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2019-06-11 05:37:12 +04:00
|
|
|
color: rgba(178, 33, 12, 1);
|
2019-06-03 20:16:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.homeContainer .homeWrapper .projectLogo {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projectTitle {
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 0;
|
2019-05-24 17:16:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.projectTitle small {
|
2019-06-03 20:16:05 +04:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.promoSection .promoRow {
|
|
|
|
padding-top: 0;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.promoSection .promoRow .pluginRowBlock .pluginWrapper {
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockElement {
|
|
|
|
color: #1A1A1A;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockImage {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockContent {
|
|
|
|
margin-top: -25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features {
|
|
|
|
background: white;
|
|
|
|
margin-top: -40px;
|
|
|
|
position: relative;
|
2019-05-24 17:16:38 +04:00
|
|
|
text-align: center;
|
2019-06-03 20:16:05 +04:00
|
|
|
/* box-shadow: 0 10px 10px -6px rgba(177, 176, 176, 0.3); */
|
|
|
|
}
|
|
|
|
|
|
|
|
.sectionTitle {
|
|
|
|
border-bottom: 4px solid #e0e0e0;
|
|
|
|
max-width: 200px;
|
2019-05-24 17:16:38 +04:00
|
|
|
margin: 0 auto;
|
2019-06-03 20:16:05 +04:00
|
|
|
margin-top: 35px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sectionTitle.blockTitle {
|
|
|
|
margin-bottom: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightBackground, body, html {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright a {
|
|
|
|
color: #B2210C;
|
|
|
|
}
|
|
|
|
|
|
|
|
.productShowcaseSection.team .logos img {
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 150px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
padding-left: 40px;
|
|
|
|
padding-right: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.productShowcaseSection.team .logos p {
|
|
|
|
padding-top: 0px;
|
|
|
|
}
|
|
|
|
|
2019-06-10 22:15:14 +04:00
|
|
|
.toc .toggleNav {
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainContainer {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tocActive .onPageNav > .toc-headings {
|
|
|
|
padding-top: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.docsSliderActive #tocToggler {
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:37:12 +04:00
|
|
|
code {
|
|
|
|
background: rgb(240, 240, 240);
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
|
2019-06-13 04:50:55 +04:00
|
|
|
body > div.fixedHeaderContainer > div > header > div > nav > ul > li:nth-child(5) {
|
|
|
|
background: url('/img/discord.svg');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
min-width: 50px;
|
|
|
|
padding-top: 5px;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > div.fixedHeaderContainer > div > header > div > nav > ul > li:nth-child(5):hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > div.fixedHeaderContainer > div > header > div > nav > ul > li:nth-child(5) > a:hover {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2019-06-21 16:45:52 +04:00
|
|
|
.cheatsheet tr > td:first-of-type {
|
|
|
|
min-width: 240px;
|
|
|
|
}
|
|
|
|
|
2019-06-03 20:16:05 +04:00
|
|
|
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1023px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1400px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1500px) {
|
2019-05-13 17:55:32 +04:00
|
|
|
}
|