2023-04-01 21:22:16 -05:00
|
|
|
/* Bottom border of each suggestion */
|
|
|
|
|
.algolia-docsearch-suggestion {
|
|
|
|
|
border-bottom-color: #3a3dd1;
|
|
|
|
|
}
|
|
|
|
|
/* Main category headers */
|
|
|
|
|
.algolia-docsearch-suggestion--category-header {
|
|
|
|
|
background-color: #4b54de;
|
|
|
|
|
}
|
|
|
|
|
/* Highlighted search terms */
|
|
|
|
|
.algolia-docsearch-suggestion--highlight {
|
|
|
|
|
color: #3a33d1;
|
|
|
|
|
}
|
|
|
|
|
/* Highligted search terms in the main category headers */
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--highlight {
|
2023-04-01 21:22:16 -05:00
|
|
|
background-color: #4d47d5;
|
|
|
|
|
}
|
|
|
|
|
/* Currently selected suggestion */
|
|
|
|
|
.aa-cursor .algolia-docsearch-suggestion--content {
|
|
|
|
|
color: #272296;
|
|
|
|
|
}
|
|
|
|
|
.aa-cursor .algolia-docsearch-suggestion {
|
|
|
|
|
background: #ebebfb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For bigger screens, when displaying results in two columns */
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
/* Bottom border of each suggestion */
|
|
|
|
|
.algolia-docsearch-suggestion {
|
|
|
|
|
border-bottom-color: #7671df;
|
|
|
|
|
}
|
|
|
|
|
/* Left column, with secondary category header */
|
|
|
|
|
.algolia-docsearch-suggestion--subcategory-column {
|
|
|
|
|
border-right-color: #7671df;
|
|
|
|
|
color: #4e4726;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 32px !important;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
visibility: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox .algolia-autocomplete {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__wrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
box-sizing: border-box;
|
2023-11-29 02:30:53 +00:00
|
|
|
-webkit-transition:
|
|
|
|
|
box-shadow 0.4s ease,
|
|
|
|
|
background 0.4s ease;
|
|
|
|
|
transition:
|
|
|
|
|
box-shadow 0.4s ease,
|
|
|
|
|
background 0.4s ease;
|
2023-04-01 21:22:16 -05:00
|
|
|
border: 0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
box-shadow: inset 0 0 0 1px #cccccc;
|
|
|
|
|
background: #ffffff !important;
|
|
|
|
|
padding: 0;
|
|
|
|
|
padding-right: 26px;
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input::-webkit-search-decoration,
|
|
|
|
|
.searchbox__input::-webkit-search-cancel-button,
|
|
|
|
|
.searchbox__input::-webkit-search-results-button,
|
|
|
|
|
.searchbox__input::-webkit-search-results-decoration {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input:hover {
|
|
|
|
|
box-shadow: inset 0 0 0 1px #b3b3b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input:focus,
|
|
|
|
|
.searchbox__input:active {
|
|
|
|
|
outline: 0;
|
|
|
|
|
box-shadow: inset 0 0 0 1px #aaaaaa;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input::-webkit-input-placeholder {
|
|
|
|
|
color: #aaaaaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input::-moz-placeholder {
|
|
|
|
|
color: #aaaaaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input:-ms-input-placeholder {
|
|
|
|
|
color: #aaaaaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input::placeholder {
|
|
|
|
|
color: #aaaaaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__submit {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 16px 0 0 16px;
|
|
|
|
|
background-color: rgba(69, 142, 225, 0);
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: inherit;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
right: inherit;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__submit::before {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: -4px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
content: '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__submit:hover,
|
|
|
|
|
.searchbox__submit:active {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__submit:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__submit svg {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
fill: #6d7e96;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__reset {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 8px;
|
|
|
|
|
right: 8px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
background: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: inherit;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
fill: rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__reset.hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__reset:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__reset svg {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchbox__input:valid ~ .searchbox__reset {
|
|
|
|
|
display: block;
|
|
|
|
|
-webkit-animation-name: sbx-reset-in;
|
|
|
|
|
animation-name: sbx-reset-in;
|
|
|
|
|
-webkit-animation-duration: 0.15s;
|
|
|
|
|
animation-duration: 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes sbx-reset-in {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: translate3d(-20%, 0, 0);
|
|
|
|
|
transform: translate3d(-20%, 0, 0);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: none;
|
|
|
|
|
transform: none;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes sbx-reset-in {
|
|
|
|
|
0% {
|
|
|
|
|
-webkit-transform: translate3d(-20%, 0, 0);
|
|
|
|
|
transform: translate3d(-20%, 0, 0);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
-webkit-transform: none;
|
|
|
|
|
transform: none;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu:before {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: '';
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background: #373940;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
top: -7px;
|
|
|
|
|
border-top: 1px solid #373940;
|
|
|
|
|
border-right: 1px solid #373940;
|
|
|
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu {
|
2023-11-29 02:30:53 +00:00
|
|
|
box-shadow:
|
|
|
|
|
0 1px 0 0 rgba(0, 0, 0, 0.2),
|
|
|
|
|
0 2px 3px 0 rgba(0, 0, 0, 0.1);
|
2023-04-01 21:22:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 601px) {
|
|
|
|
|
.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
|
|
|
|
|
right: 0 !important;
|
|
|
|
|
left: inherit !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before {
|
|
|
|
|
right: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -6px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 6px 0 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
text-align: left;
|
|
|
|
|
height: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
min-width: 500px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu {
|
|
|
|
|
z-index: 100;
|
|
|
|
|
position: fixed !important;
|
|
|
|
|
top: 50px !important;
|
|
|
|
|
left: auto !important;
|
|
|
|
|
right: 1rem !important;
|
|
|
|
|
width: 600px;
|
|
|
|
|
max-width: calc(100% - 2rem);
|
|
|
|
|
max-height: calc(100% - 5rem);
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu:before {
|
|
|
|
|
right: 6rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu .ds-suggestions {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu .ds-suggestion {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-dropdown-menu * {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion {
|
|
|
|
|
display: block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .ds-cursor .algolia-docsearch-suggestion--wrapper {
|
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
box-shadow: inset -2px 0 0 #61dafb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--highlight {
|
|
|
|
|
background: #ffe564;
|
|
|
|
|
padding: 0.1em 0.05em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete
|
|
|
|
|
.algolia-docsearch-suggestion--category-header
|
|
|
|
|
.algolia-docsearch-suggestion--category-header-lvl0
|
|
|
|
|
.algolia-docsearch-suggestion--highlight,
|
|
|
|
|
.algolia-autocomplete
|
|
|
|
|
.algolia-docsearch-suggestion--category-header
|
|
|
|
|
.algolia-docsearch-suggestion--category-header-lvl1
|
|
|
|
|
.algolia-docsearch-suggestion--highlight {
|
|
|
|
|
color: inherit;
|
|
|
|
|
background: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight {
|
2023-04-01 21:22:16 -05:00
|
|
|
padding: 0 0 1px;
|
|
|
|
|
background: inherit;
|
|
|
|
|
box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--content {
|
|
|
|
|
display: block;
|
|
|
|
|
float: right;
|
|
|
|
|
width: 70%;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 5.33333px 0 5.33333px 10.66667px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--content:before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: block;
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 1px;
|
|
|
|
|
background: #ececec;
|
|
|
|
|
left: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--category-header {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: none;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
background-color: #373940;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--wrapper {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 8px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 30%;
|
|
|
|
|
display: none;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
text-align: right;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 5.33333px 10.66667px;
|
|
|
|
|
color: #777;
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: block;
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 1px;
|
|
|
|
|
background: #ececec;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete
|
|
|
|
|
.algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
|
|
|
|
|
.algolia-docsearch-suggestion--category-header,
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary {
|
2023-04-01 21:22:16 -05:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column .algolia-docsearch-suggestion--highlight {
|
2023-04-01 21:22:16 -05:00
|
|
|
background-color: inherit;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--title {
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
color: #02060c;
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--text {
|
|
|
|
|
display: block;
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
color: #63676d;
|
|
|
|
|
padding-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--no-results {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
background-color: #373940;
|
|
|
|
|
margin-top: -8px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--no-results .algolia-docsearch-suggestion--text {
|
2023-04-01 21:22:16 -05:00
|
|
|
color: #ffffff;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion--no-results::before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion code {
|
|
|
|
|
padding: 1px 5px;
|
|
|
|
|
font-size: 90%;
|
|
|
|
|
border: none;
|
|
|
|
|
color: #222222;
|
|
|
|
|
background-color: #ebebeb;
|
|
|
|
|
border-radius: 3px;
|
2023-04-24 13:49:20 -04:00
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
2023-04-01 21:22:16 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-24 13:49:20 -04:00
|
|
|
.algolia-autocomplete .algolia-docsearch-suggestion code .algolia-docsearch-suggestion--highlight {
|
2023-04-01 21:22:16 -05:00
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete
|
|
|
|
|
.algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
|
|
|
|
|
.algolia-docsearch-suggestion--category-header {
|
|
|
|
|
color: white;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete
|
|
|
|
|
.algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary
|
|
|
|
|
.algolia-docsearch-suggestion--subcategory-column {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-footer {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30px;
|
|
|
|
|
z-index: 2000;
|
|
|
|
|
float: right;
|
|
|
|
|
font-size: 0;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.algolia-autocomplete .algolia-docsearch-footer--logo {
|
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 18'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-36.87%25' x2='129.43%25' y1='134.94%25' y2='-27.7%25'%3E%3Cstop stop-color='%252300AEFF' offset='0%25'/%3E%3Cstop stop-color='%25233369E7' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%2523a)' d='M59.4.02h13.3a2.37 2.37 0 0 1 2.38 2.37V15.6a2.37 2.37 0 0 1-2.38 2.36H59.4a2.37 2.37 0 0 1-2.38-2.36V2.38A2.37 2.37 0 0 1 59.4.02z'/%3E%3Cpath fill='%2523FFF' d='M66.26 4.56c-2.82 0-5.1 2.27-5.1 5.08 0 2.8 2.28 5.07 5.1 5.07 2.8 0 5.1-2.26 5.1-5.07 0-2.8-2.28-5.07-5.1-5.07zm0 8.65c-2 0-3.6-1.6-3.6-3.56 0-1.97 1.6-3.58 3.6-3.58 1.98 0 3.6 1.6 3.6 3.58a3.58 3.58 0 0 1-3.6 3.57zm0-6.4v2.66c0 .07.08.13.15.1l2.4-1.24c.04-.02.06-.1.03-.14a2.96 2.96 0 0 0-2.46-1.5c-.06 0-.1.05-.1.1zm-3.33-1.96l-.3-.3a.78.78 0 0 0-1.12 0l-.36.36a.77.77 0 0 0 0 1.1l.3.3c.05.05.13.04.17 0 .2-.25.4-.5.6-.7.23-.23.46-.43.7-.6.07-.04.07-.1.03-.16zm5-.8V3.4a.78.78 0 0 0-.78-.78h-1.83a.78.78 0 0 0-.78.78v.63c0 .07.06.12.14.1a5.74 5.74 0 0 1 1.58-.22c.52 0 1.04.07 1.54.2a.1.1 0 0 0 .13-.1z'/%3E%3Cpath fill='%2523182359' d='M102.16 13.76c0 1.46-.37 2.52-1.12 3.2-.75.67-1.9 1-3.44 1-.56 0-1.74-.1-2.67-.3l.34-1.7c.78.17 1.82.2 2.36.2.86 0 1.48-.16 1.84-.5.37-.36.55-.88.55-1.57v-.35a6.37 6.37 0 0 1-.84.3 4.15 4.15 0 0 1-1.2.17 4.5 4.5 0 0 1-1.6-.28 3.38 3.38 0 0 1-1.26-.82 3.74 3.74 0 0 1-.8-1.35c-.2-.54-.3-1.5-.3-2.2 0-.67.1-1.5.3-2.06a3.92 3.92 0 0 1 .9-1.43 4.12 4.12 0 0 1 1.45-.92 5.3 5.3 0 0 1 1.94-.37c.7 0 1.35.1 1.97.2a15.86 15.86 0 0 1 1.6.33v8.46zm-5.95-4.2c0 .9.2 1.88.6 2.3.4.4.9.62 1.53.62.34 0 .66-.05.96-.15a2.75 2.75 0 0 0 .73-.33V6.7a8.53 8.53 0 0 0-1.42-.17c-.76-.02-1.36.3-1.77.8-.4.5-.62 1.4-.62 2.23zm16.13 0c0 .72-.1 1.26-.32 1.85a4.4 4.4 0 0 1-.9 1.53c-.38.42-.85.75-1.4.98-.54.24-1.4.37-1.8.37-.43 0-1.27-.13-1.8-.36a4.1 4.1 0 0 1-1.4-.97 4.5 4.5 0 0 1-.92-1.52 5.04 5.04 0 0 1-.33-1.84c0-.72.1-1.4.32-2 .22-.6.53-1.1.92-1.5.4-.43.86-.75 1.4-.98a4.55 4.55 0 0 1 1.78-.34 4.7 4.7 0 0 1 1.8.34c.54.23 1 .55 1.4.97.38.42.68.92.9 1.5.23.6.35 1.3.35 2zm-2.2 0c0-.92-.2-1.7-.6-2.22-.38-.54-.94-.8-1.64-.8-.72 0-1.27.26-1.67.8-.4.54-.58 1.3-.58 2.22 0 .93.2 1.56.6 2.1.38.54.94.8 1.64.8s1.25-.26 1.65-.8c.4-.55.6-1.17.6-2.1zm6.97 4.7c-3.5.02-3.5-2.8-3.5-3.27L113.57.92l2.15-.34v10c0 .25 0 1.87 1.37 1.88v1.8zm3.77 0h-2.15v-9.2l2.15-.33v9.54zM119.8 3.74c.7 0 1.3-.58 1.3-1.3 0-.7-.58-1.3-1.3-1.3-.73 0-1.3.6-1.3 1.3 0 .72.58 1.3 1.3 1.3zm6.43 1c.7 0 1.3.1 1.78.27.5.18.88.42 1.17.73.28.3.5.74.6 1.18.13.46.2.95.2 1.5v5.47a25.24 25.24 0 0 1-1.5.25c-.67.1-1.42.15-2.25.15a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.37-.27-.9-.27-1.44 0-.52.1-.85.3-1.2.2-.37.48-.67.83-.9a3.6 3.6 0 0 1 1.23-.5 7.07 7.07 0 0 1 2.2-.1l.83.16v-.35c0-.25-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.18-.34-.3-.58-.4a2.54 2.54 0 0 0-.92-.17c-.5 0-.94.06-1.35.13-.4.08-.75.16-1 .25l-.27-1.74c.27-.1.67-.18 1.2-.28a9.34 9.34 0 0 1 1.65-.14zm.18 7.74c.66 0 1.15-.04 1.5-.1V10.2a5.1 5.1 0 0 0-2-.1c-.23.03-.45.1-.64.2a1.17 1.17 0 0 0-.47.38c-.13.17-.18.26-.18.52 0 .5.17.8.5.98.32.2.74.3 1.3.3zM84.1 4.8c.72 0 1.3.08 1.8.26.48.17.87.42 1.15.73.3.3.5.72.6 1.17.14.45.2.94.2 1.47v5.48a25.24 25.24 0 0 1-1.5.26c-.67.1-1.42.14-2.25.14a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.38-.27-.9-.27-1.44 0-.53.1-.86.3-1.22.2-.36.5-.65.84-.88a3.6 3.6 0 0 1 1.24-.5 7.07 7.07 0 0 1 2.2-.1c.26.03.54.08.84.15v-.35c0-.24-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.17-.34-.3-.58-.4a2.54 2.54 0 0 0-.9-.15c-.5 0-.96.05-1.37.12-.4.07-.75.15-1 .24l-.26-1.75c.27-.08.67-.17 1.18-.26a8.9 8.9 0 0 1 1.66-.15zm.2 7.73c.65 0 1.14-.04 1.48-.1v-2.17a5.1 5.1 0 0 0-1.98-.1c-.24.03-.46.1-.65.18a1.17 1.17 0 0 0-.47.4c-.12.17-.17.26-.17.52 0 .5.18.8.5.98.32.2.75.3 1.3.3zm8.68 1.74c-3.5 0-3.5-2.82-3.5-3.28L89.45.92 91.6.6v10c0 .25 0 1.87 1.38 1.88v1.8z'/%3E%3Cpath fill='%25231D3657' d='M5.03 11.03c0 .7-.26 1.24-.76 1.64-.5.4-1.2.6-2.1.6-.88 0-1.6-.14-2.17-.42v-1.2c.36.16.74.3 1.14
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-indent: -9000px;
|
|
|
|
|
width: 110px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|