2018-09-11 14:11:24 +03:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Gudea');
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=Khula:400,700');
|
2020-05-14 09:33:50 +03:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600&display=swap');
|
2018-09-11 14:11:24 +03:00
|
|
|
html {
|
|
|
|
background-color: #f8f8f8 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-moz-selection { /* Code for Firefox */
|
|
|
|
background: #b2d7fe !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background: #b2d7fe !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2018-12-16 09:41:34 +03:00
|
|
|
font-family: 'Gudea' !important;
|
|
|
|
font-size: 16px !important;
|
|
|
|
color: #333 !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
min-width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
h1 a:visited,
|
|
|
|
h2 a:visited,
|
|
|
|
h3 a:visited,
|
|
|
|
h4 a:visited,
|
|
|
|
h5 a:visited,
|
|
|
|
h6 a:visited {
|
2019-12-26 08:31:02 +03:00
|
|
|
color: #1CD3C6 !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
h3 {
|
|
|
|
font-weight: 500;
|
|
|
|
margin: 0 !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-family: 'Gudea';
|
|
|
|
font-size: 16px;
|
|
|
|
color: #333;
|
|
|
|
line-height: 1.7;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
tt,
|
|
|
|
code,
|
|
|
|
kbd,
|
|
|
|
pre,
|
|
|
|
samp {
|
|
|
|
font-size: 15px !important;
|
2018-11-19 13:42:13 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
font-family: 'Gudea';
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.inline-block {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.document {
|
|
|
|
margin: 0 auto;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.main_container_wrapper {
|
|
|
|
min-width: 90%;
|
|
|
|
overflow-y: auto;
|
2019-01-03 06:59:27 +03:00
|
|
|
-webkit-overflow-scrolling: touch; /* for iOS momentum scroll */
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.content_wrapper {
|
|
|
|
display: flex;
|
|
|
|
font-family: 'Gudea';
|
|
|
|
margin: auto;
|
|
|
|
width: 100%;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
2020-05-14 09:33:50 +03:00
|
|
|
.hideClass {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper {
|
|
|
|
background-color: #3D1BB7;
|
|
|
|
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.4);
|
|
|
|
position: relative;
|
|
|
|
max-height: 56px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerInnerWrapper {
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .displayFlex
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .displayFlex a {
|
|
|
|
flex: 1;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStripImg {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStripImg img {
|
|
|
|
max-height: 56px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip
|
|
|
|
{
|
|
|
|
padding: 8px 0px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .announceIcon {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .announceIcon img {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-right: 16px;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .displayFlex a:hover, .bannerStripWrapper .displayFlex a:focus
|
|
|
|
{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .closeBanner
|
|
|
|
{
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: right;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 11;
|
|
|
|
margin-left: auto;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: rgba(61,27,183,.8);
|
|
|
|
img {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall
|
|
|
|
{
|
|
|
|
font-family: 'Poppins';
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: left;
|
|
|
|
padding-top: 0;
|
|
|
|
letter-spacing: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 17px;
|
|
|
|
color: #fff;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall .textColor {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall .textColor img {
|
|
|
|
display: inline-block;
|
|
|
|
transition: 200ms;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall .textColor:hover img {
|
|
|
|
transform: translateX(4px);
|
|
|
|
}
|
2018-12-16 09:41:34 +03:00
|
|
|
.content_inner_wrapper {
|
|
|
|
width: 75% !important;
|
|
|
|
height: 100vh;
|
|
|
|
overflow-y: auto;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
[role="main"] {
|
|
|
|
width: 90% !important;
|
2019-04-10 15:34:45 +03:00
|
|
|
/*max-width: 800px !important;*/
|
2018-12-16 09:41:34 +03:00
|
|
|
border: none !important;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
padding-left: 15px !important;
|
|
|
|
padding-right: 15px !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
[role="main"] h1 {
|
|
|
|
font-size: 32px !important;
|
2018-12-03 15:12:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
[role="main"] h2 {
|
|
|
|
font-size: 24px !important;
|
2018-12-03 15:12:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
[role="main"] h3 {
|
|
|
|
font-size: 20px !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2019-07-10 13:19:58 +03:00
|
|
|
[role="main"] h4 {
|
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content,
|
|
|
|
#docs-header {
|
|
|
|
font-size: 16px !important;
|
|
|
|
margin-left: 40px; margin-right: 40px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content h1,
|
|
|
|
#docs-content h2,
|
|
|
|
#docs-content h3,
|
|
|
|
#docs-content h4,
|
|
|
|
#docs-content h5,
|
|
|
|
#docs-content h6 {
|
2018-09-11 14:11:24 +03:00
|
|
|
font-weight: 400;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content a.reference {
|
2019-12-26 08:31:02 +03:00
|
|
|
/*color: #1CD3C6 !important;*/
|
|
|
|
/*color: #1CD3C6 !important;*/
|
2019-12-30 12:02:06 +03:00
|
|
|
/* color: #FF3264 !important; */
|
|
|
|
color: #DB0037 !important;
|
2018-12-16 09:41:34 +03:00
|
|
|
background-color: transparent !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#docs-content img {
|
|
|
|
-webkit-box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
|
|
|
-moz-box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
|
|
|
box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
2019-02-06 09:39:36 +03:00
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 30px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2019-03-13 13:03:45 +03:00
|
|
|
#docs-content img.no-shadow,
|
|
|
|
#docs-content a.no-shadow img {
|
2018-09-11 14:11:24 +03:00
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .section ol li {
|
|
|
|
line-height: 1.7;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content td div.highlight {
|
|
|
|
margin: 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .note,
|
|
|
|
#docs-content .admonition,
|
|
|
|
#docs-content .help-block {
|
|
|
|
background: #f1f9ff;
|
|
|
|
border: 1px solid #c9e0f0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .docutils {
|
|
|
|
color: #6f6f6f;
|
2019-05-07 15:21:37 +03:00
|
|
|
word-break: break-word;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .docutils.literal {
|
|
|
|
padding: 0.2em 0.4em;
|
|
|
|
margin: 0;
|
|
|
|
background-color: rgba(27,31,35,0.05);
|
|
|
|
border-radius: 3px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .figure {
|
|
|
|
width: 45%;
|
|
|
|
display: inline-block;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content .figure img {
|
|
|
|
width: 100%;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
2019-07-11 08:37:06 +03:00
|
|
|
|
|
|
|
#docs-content table caption {
|
|
|
|
position: relative;
|
|
|
|
}
|
2019-08-16 00:19:47 +03:00
|
|
|
|
|
|
|
#docs-content span.target {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** random overrides ***/
|
|
|
|
|
|
|
|
.wy-plain-list-decimal ol,
|
|
|
|
.rst-content .section ol ol,
|
|
|
|
.rst-content ol.arabic ol,
|
|
|
|
article ol ol {
|
|
|
|
margin-bottom: 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.schema {
|
|
|
|
display: inline-block;
|
|
|
|
width: 60%;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2019-04-10 14:38:50 +03:00
|
|
|
.highlight pre {
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** random overrides END ***/
|
|
|
|
|
|
|
|
/*** behavior styles ***/
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.no_scroll {
|
|
|
|
overflow: hidden !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** behavior styles END ***/
|
|
|
|
|
|
|
|
/*** Logo ***/
|
|
|
|
|
|
|
|
.img_wrapper {
|
|
|
|
padding: 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.logo_img {
|
|
|
|
width: 100px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Logo END ***/
|
|
|
|
|
|
|
|
/*** Tabs ***/
|
|
|
|
|
|
|
|
.api-tabs .docutils {
|
|
|
|
font-size: 16px !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
margin: 0;
|
2018-12-16 09:41:34 +03:00
|
|
|
max-width: 100%;
|
|
|
|
padding: 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.api-tabs.container {
|
|
|
|
margin: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.api-tabs .ui.tab {
|
|
|
|
padding: 20px
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.api-tabs .ui.tab > :first-child > .highlight,
|
|
|
|
.api-tabs .ui.tab > p:first-child,
|
|
|
|
.api-tabs .ui.tab > :first-child > li {
|
|
|
|
margin-top: 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Tabs END ***/
|
|
|
|
|
|
|
|
/*** Header ***/
|
|
|
|
|
|
|
|
#docs-header-actions {
|
|
|
|
margin-top: 30px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .header_links {
|
2019-12-15 16:02:59 +03:00
|
|
|
min-width: 33%;
|
2018-12-16 09:41:34 +03:00
|
|
|
text-align: right;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .header_links.inline-block .header_links_content {
|
2018-09-11 14:11:24 +03:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .header_links.inline-block .buttons {
|
|
|
|
float: right;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .social_icons_wrapper {
|
|
|
|
padding-left: 10px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .social_icons_wrapper .social_icons {
|
|
|
|
display: inline-block;
|
2019-12-15 16:02:59 +03:00
|
|
|
padding: 10px 5px;
|
2018-12-16 09:41:34 +03:00
|
|
|
opacity: 0.7;
|
2019-12-15 16:02:59 +03:00
|
|
|
vertical-align: middle;
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#docs-header-actions .social_icons_wrapper .social_icons:hover {
|
|
|
|
opacity: 1;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .social_icons_wrapper .social_icons img {
|
|
|
|
box-shadow: none !important;
|
|
|
|
-webkit-box-shadow: none !important;
|
|
|
|
-moz-box-shadow: none !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
width: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:02:59 +03:00
|
|
|
#docs-header-actions .social_icons_wrapper .social_icons a {
|
|
|
|
text-decoration: none;
|
2019-12-30 12:02:06 +03:00
|
|
|
color: #DB0037;
|
2019-12-15 16:02:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#docs-header-actions .social_icons_wrapper .social_icons iframe {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .tooltip {
|
|
|
|
position: relative;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2019-12-15 16:02:59 +03:00
|
|
|
#docs-header-actions .tooltip .tooltip_text {
|
2018-12-16 09:41:34 +03:00
|
|
|
visibility: hidden;
|
|
|
|
width: 272px;
|
|
|
|
background-color: black;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 2px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
right: 0;
|
|
|
|
top: 36px;
|
2018-09-11 14:11:24 +03:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:02:59 +03:00
|
|
|
#docs-header-actions .tooltip:hover .tooltip_text {
|
2018-12-16 09:41:34 +03:00
|
|
|
visibility: visible;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Header END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Mobile only ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.mobile-only {
|
|
|
|
display: none;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.mobile-only .mobile-logo-docs {
|
|
|
|
margin-left:10px;
|
|
|
|
padding-top: 10px;
|
2018-09-11 14:11:24 +03:00
|
|
|
text-decoration: none;
|
2018-12-16 09:41:34 +03:00
|
|
|
color: #333 !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#nav_tree_icon {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nav_tree_icon .fa-bars {
|
|
|
|
font-size: 18px;
|
2019-12-26 08:31:02 +03:00
|
|
|
color: #1CD3C6;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Mobile only END ***/
|
|
|
|
|
|
|
|
/*** Search box ***/
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box {
|
2018-09-11 14:11:24 +03:00
|
|
|
position: relative;
|
|
|
|
width: 64%;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box .search_icon {
|
2018-09-11 14:11:24 +03:00
|
|
|
position: absolute;
|
|
|
|
top: 13px;
|
|
|
|
left: 10px;
|
|
|
|
font-size: 18px;
|
2019-12-26 08:31:02 +03:00
|
|
|
color: #1CD3C6;
|
2018-09-11 14:11:24 +03:00
|
|
|
cursor: pointer;
|
2018-12-13 14:08:45 +03:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input {
|
2018-09-11 14:11:24 +03:00
|
|
|
height: 44px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-indent: 30px;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 6px 12px;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.42857143;
|
|
|
|
color: #333;
|
|
|
|
background-color: #fff;
|
|
|
|
background-image: none;
|
|
|
|
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
border: 0;
|
2019-12-26 08:31:02 +03:00
|
|
|
border-bottom: 1px solid #1CD3C6;
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input:focus {
|
2018-09-11 14:11:24 +03:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input::placeholder {
|
2018-09-11 14:11:24 +03:00
|
|
|
color:#ccc;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input::-webkit-input-placeholder {
|
2018-09-11 14:11:24 +03:00
|
|
|
color:#ccc;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input::-moz-placeholder { /* Firefox 19+ */
|
2018-09-11 14:11:24 +03:00
|
|
|
color:#ccc;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input:-ms-input-placeholder { /* IE 10+ */
|
2018-09-11 14:11:24 +03:00
|
|
|
color:#ccc;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box input:-moz-placeholder { /* Firefox 18- */
|
2018-09-11 14:11:24 +03:00
|
|
|
color:#ccc;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Search box END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Table of contents ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#table-of-contents {
|
|
|
|
padding: 0 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #F8F8F9;
|
|
|
|
border: 1px solid #EAEAEC;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#table-of-contents .topic-title {
|
|
|
|
font-weight: bold;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Table of contents END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** toctree ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.toctree-wrapper {
|
|
|
|
font-family: 'Gudea';
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** toctree END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Feedback section ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper {
|
|
|
|
background-color: #eee;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 20px 0;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback {
|
|
|
|
position: relative;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback .display_inl {
|
|
|
|
display: inline-block;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback .actions {
|
|
|
|
width: 21px;
|
|
|
|
cursor: pointer;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback .actions.thumb_up {
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
left: 170px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback .actions.thumb_down {
|
|
|
|
position: absolute;
|
|
|
|
left: 210px;
|
|
|
|
top: 4px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .thumb_up:hover svg path {
|
|
|
|
fill: green;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .thumb_down:hover svg path {
|
|
|
|
fill: darkred;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback .actions img {
|
2018-09-11 14:11:24 +03:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.feedback_wrapper .feedback_btn {
|
|
|
|
margin-top: 10px;
|
2018-09-11 14:11:24 +03:00
|
|
|
padding: 5px 10px;
|
2019-12-26 08:31:02 +03:00
|
|
|
background-color: #1CD3C6;
|
2018-09-11 14:11:24 +03:00
|
|
|
color: #000;
|
|
|
|
border-radius: 5px;
|
2019-12-26 08:31:02 +03:00
|
|
|
border: 1px solid #1CD3C6;
|
2018-09-11 14:11:24 +03:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
font-family: 'Gudea';
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#feedback_box {
|
|
|
|
max-width: 95%;
|
|
|
|
padding: 5px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** feedback section END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Footer ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.footer-hasura-custom {
|
|
|
|
text-align: center;
|
|
|
|
background-color: #eee;
|
|
|
|
margin: 20px 0;
|
2019-01-23 18:06:37 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-hasura-custom .footer_logo {
|
2019-01-29 18:54:56 +03:00
|
|
|
width: 100px;
|
2019-01-23 18:06:37 +03:00
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-hasura-custom .footer_text {
|
|
|
|
display: inline-block;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Footer END ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Sidebar ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
#sidebar {
|
2019-12-26 08:31:02 +03:00
|
|
|
background-color: #001934;
|
2018-09-11 14:11:24 +03:00
|
|
|
width: 24% !important;
|
|
|
|
font-family: 'Gudea' !important;
|
|
|
|
font-size: 16px;
|
|
|
|
height: 100vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding-left: 15px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper h3 {
|
|
|
|
padding-top: 10px;
|
|
|
|
/*
|
|
|
|
color: #fff;
|
|
|
|
*/
|
|
|
|
color: rgba(214,214,214,1);
|
|
|
|
font-family: 'Khula';
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper h4 {
|
|
|
|
/*
|
|
|
|
color: #fff;
|
|
|
|
*/
|
|
|
|
color: rgba(214,214,214,1);
|
|
|
|
font-family: 'Khula';
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper ul li {
|
|
|
|
/* list-style-type: none; */
|
|
|
|
/* color: #fff; */
|
|
|
|
color: rgba(214,214,214,1);
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper ul li a {
|
|
|
|
/* color: #fff; */
|
|
|
|
color: rgba(214,214,214,1);
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 16px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper ul li a code {
|
|
|
|
color: #32A061;
|
|
|
|
text-decoration: none;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 18px 0;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: -moz-sticky;
|
|
|
|
position: -o-sticky;
|
|
|
|
position: -ms-sticky;
|
2019-12-26 08:31:02 +03:00
|
|
|
background-color: #001934;
|
2018-12-16 09:41:34 +03:00
|
|
|
z-index: 10;
|
|
|
|
border-bottom: 1px solid #4F5763;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo a {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo a:hover {
|
|
|
|
opacity: 0.6;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .version_txt {
|
|
|
|
font-family: Gudea;
|
|
|
|
color: rgba(255,198,39,1);
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 10px;
|
2018-09-11 14:11:24 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-09-09 11:30:11 +03:00
|
|
|
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .version_txt select {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
color: #FFF;
|
|
|
|
// color: #000;
|
|
|
|
font-size: 18px;
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2019-09-09 11:30:11 +03:00
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
background-position: right 0.25em center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 0.5em auto;
|
|
|
|
background-origin: border-box;
|
|
|
|
padding-right: 1em;
|
|
|
|
|
|
|
|
background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGV2cm9uLWRvd24iIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNDQ4IiBoZWlnaHQ9IjUxMiI+PHJlY3QgaWQ9ImJhY2tncm91bmRyZWN0IiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4PSIwIiB5PSIwIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiLz48ZyBjbGFzcz0iY3VycmVudExheWVyIiBzdHlsZT0iIj48dGl0bGU+TGF5ZXIgMTwvdGl0bGU+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTIwNy4wMjkgMzgxLjQ3NkwxMi42ODYgMTg3LjEzMmMtOS4zNzMtOS4zNzMtOS4zNzMtMjQuNTY5IDAtMzMuOTQxbDIyLjY2Ny0yMi42NjdjOS4zNTctOS4zNTcgMjQuNTIyLTkuMzc1IDMzLjkwMS0uMDRMMjI0IDI4NC41MDVsMTU0Ljc0NS0xNTQuMDIxYzkuMzc5LTkuMzM1IDI0LjU0NC05LjMxNyAzMy45MDEuMDRsMjIuNjY3IDIyLjY2N2M5LjM3MyA5LjM3MyA5LjM3MyAyNC41NjkgMCAzMy45NDFMMjQwLjk3MSAzODEuNDc2Yy05LjM3MyA5LjM3Mi0yNC41NjkgOS4zNzItMzMuOTQyIDB6IiBpZD0ic3ZnXzEiIGNsYXNzPSJzZWxlY3RlZCIgZmlsbC1vcGFjaXR5PSIxIi8+PC9nPjwvc3ZnPg==);
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .version_txt select:focus {
|
|
|
|
outline: none;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .version_txt .option_val {
|
|
|
|
color: #000;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .docs_label {
|
|
|
|
margin-top: 5px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .header_main_logo .docs_label .hero {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 21px;
|
2018-09-11 14:11:24 +03:00
|
|
|
font-weight: 600;
|
2018-12-16 09:41:34 +03:00
|
|
|
margin-left: calc(24vw - 240px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper .current {
|
2018-09-11 14:11:24 +03:00
|
|
|
font-family: 'Gudea';
|
2018-12-16 09:41:34 +03:00
|
|
|
font-size: 16px;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper a.current.reference.internal {
|
2019-12-26 08:31:02 +03:00
|
|
|
color: #1CD3C6 !important;
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar .sphinxsidebar .sphinxsidebarwrapper a.reference.internal > code.docutils.literal {
|
|
|
|
color: rgba(214,214,214,1) !important;
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Sidebar END ***/
|
|
|
|
|
|
|
|
/*** GraphiQL overrides ***/
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
.graphiql {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graphiql .query,
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .response,
|
|
|
|
.graphiql .variables {
|
2018-09-11 14:11:24 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .graphiql-container {
|
|
|
|
min-height: 325px;
|
2018-09-11 14:11:24 +03:00
|
|
|
border: 1px solid #eee;
|
|
|
|
-webkit-box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
|
|
|
-moz-box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
|
|
|
box-shadow: -1px 2px 20px 2px rgba(217,217,217,1);
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql.with-vars .graphiql-container {
|
|
|
|
min-height: 375px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graphiql .topBarWrap {
|
2018-09-11 14:11:24 +03:00
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .execute-button-wrap {
|
2018-09-11 14:11:24 +03:00
|
|
|
z-index: 3;
|
|
|
|
top: -2px;
|
|
|
|
left: calc(50% - 50px);
|
|
|
|
margin: 0 !important;
|
|
|
|
height: 28px !important;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .execute-button {
|
2018-09-11 14:11:24 +03:00
|
|
|
height: 28px !important;
|
|
|
|
width: 28px !important;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .execute-button svg {
|
2018-09-11 14:11:24 +03:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
left: -3px;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .CodeMirror pre {
|
2018-09-11 14:11:24 +03:00
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .CodeMirror-lines {
|
2018-09-11 14:11:24 +03:00
|
|
|
padding: 15px 0 !important;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .CodeMirror-gutter-wrapper,
|
|
|
|
.graphiql .CodeMirror-gutters {
|
2018-09-11 14:11:24 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql .title,
|
|
|
|
.graphiql .docExplorerShow,
|
|
|
|
.graphiql .toolbar {
|
2018-09-11 14:11:24 +03:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:34:39 +03:00
|
|
|
.graphiql:not(.with-vars) .variable-editor {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graphiql .variable-editor .variable-editor-title {
|
|
|
|
line-height: 12px;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 2px 10px;
|
|
|
|
}
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
.graphiql.view-only .execute-button {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** GraphiQL overrides END ***/
|
|
|
|
|
|
|
|
/*** Algolia docsearch overrides ***/
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-left .ds-dropdown-menu,
|
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
|
|
|
|
left: -25px !important;
|
|
|
|
max-width: calc(156% + 50px);
|
|
|
|
min-width: calc(156% + 50px); /* 1 / width(input_search_box) + 50px */
|
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--highlight {
|
2019-12-26 08:31:02 +03:00
|
|
|
color: #1CD3C6;
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
|
|
|
|
color: #84878E
|
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl0 .algolia-docsearch-suggestion--highlight,
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl1 .algolia-docsearch-suggestion--highlight,
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight {
|
2019-12-26 08:31:02 +03:00
|
|
|
box-shadow: inset 0 -2px 0 0 #1CD3C6;
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion.suggestion-layout-simple,
|
|
|
|
#input_search_box .algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion:not(.suggestion-layout-simple) .algolia-docsearch-suggestion--content {
|
|
|
|
background-color: #FEECC0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input_search_box .algolia-autocomplete .algolia-docsearch-suggestion--highlight {
|
2018-12-17 14:58:29 +03:00
|
|
|
background: #FFF1DB;
|
2018-12-16 09:41:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** Algolia docsearch overrides END ***/
|
|
|
|
|
|
|
|
/*** Loader ***/
|
|
|
|
|
|
|
|
.loading_overlay .loader {
|
|
|
|
border: 1px solid #cc401b;
|
|
|
|
border-radius: 50%;
|
|
|
|
border-top: 2px solid #cc401b;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
-webkit-animation: spin 1.5s linear infinite;
|
|
|
|
animation: spin 1.5s linear infinite;
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 101;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_overlay .overlay_wrapper {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
opacity: 0.9;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_overlay .body_content_position {
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 101;
|
|
|
|
margin-top: -45px;
|
|
|
|
font-weight: 500 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_overlay .subhead_wrapper_loader {
|
|
|
|
color: #4d4d4d;
|
|
|
|
font-size: 20px;
|
|
|
|
font-family: 'Khula';
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** Loader END ***/
|
|
|
|
|
|
|
|
/*** Media Query ***/
|
2018-12-12 19:10:32 +03:00
|
|
|
@media (min-width: 0) and (max-width: 1220px) {
|
2018-12-16 09:41:34 +03:00
|
|
|
html {
|
2018-12-12 19:10:32 +03:00
|
|
|
font-size: 100% !important;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
body {
|
|
|
|
min-width: 100% !important;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2018-12-12 19:10:32 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Mobile + Tab overrides ***/
|
2018-12-12 19:10:32 +03:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
body {
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 0px !important;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.main_container_wrapper {
|
|
|
|
min-width: 0px !important;
|
2018-12-12 19:10:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
position: absolute;
|
2019-01-03 06:59:27 +03:00
|
|
|
z-index: 10;
|
2018-12-12 19:10:32 +03:00
|
|
|
width: 90% !important;
|
2019-04-10 15:34:45 +03:00
|
|
|
/*max-width: 800px !important;*/
|
2018-12-12 19:10:32 +03:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
top: 120px;
|
|
|
|
height: calc(100% - 120px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content_inner_wrapper {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
[role="main"] {
|
|
|
|
float: none !important;
|
|
|
|
width: 90% !important;
|
|
|
|
margin: 0 auto !important;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
.mobile-only {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#mobile-logo {
|
2018-12-12 19:10:32 +03:00
|
|
|
display: flex;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-content,
|
|
|
|
#docs-header {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#docs-header-actions {
|
2018-12-12 19:10:32 +03:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#input_search_box {
|
|
|
|
width: 60%;
|
|
|
|
margin-left: 10px;
|
2018-12-12 19:10:32 +03:00
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-left .ds-dropdown-menu,
|
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
|
|
|
|
left: -34px !important;
|
|
|
|
max-width: calc(166% + 10px);
|
|
|
|
min-width: calc(166% + 10px); /* 1 / width(input_search_box) + 10px */
|
|
|
|
}
|
2018-12-12 19:10:32 +03:00
|
|
|
}
|
2020-05-14 09:33:50 +03:00
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
|
|
.bannerStripWrapper {
|
|
|
|
padding-left: 4vw;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStripImg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .displayFlex {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .closeBanner {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-12-16 09:41:34 +03:00
|
|
|
/*** Mobile overrides ***/
|
2018-09-11 14:11:24 +03:00
|
|
|
@media (max-width: 768px) {
|
2020-05-14 09:33:50 +03:00
|
|
|
.bannerStripWrapper {
|
|
|
|
max-height: none;
|
|
|
|
padding: 0 0px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip {
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall {
|
|
|
|
padding-left: 8px;
|
|
|
|
line-height: 120%;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStripImg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.bannerStripWrapper .bannerStrip .bodyTextSmall {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2018-12-16 09:41:34 +03:00
|
|
|
#sidebar {
|
|
|
|
top: 170px;
|
|
|
|
height: calc(100% - 170px);
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box {
|
2018-09-11 14:11:24 +03:00
|
|
|
width: 90%;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:07:47 +03:00
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu,
|
|
|
|
#input_search_box .algolia-autocomplete.algolia-autocomplete-left .ds-dropdown-menu {
|
2018-12-13 14:08:45 +03:00
|
|
|
left: -34px !important;
|
|
|
|
max-width: calc(111% + 10px);
|
|
|
|
min-width: calc(111% + 10px); /* 1 / width(input_search_box) + 10px */
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .header_links {
|
2018-09-11 14:11:24 +03:00
|
|
|
width: 100%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2018-12-16 09:41:34 +03:00
|
|
|
#docs-header-actions .header_links.inline-block .buttons {
|
2018-09-11 14:11:24 +03:00
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.api-tabs .ui.tab {
|
|
|
|
padding: 10px
|
|
|
|
}
|
2019-02-04 17:12:09 +03:00
|
|
|
|
|
|
|
.footer-hasura-custom {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-hasura-custom .footer_logo {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2018-09-11 14:11:24 +03:00
|
|
|
}
|