algolia.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. /* Bottom border of each suggestion */
  2. .algolia-docsearch-suggestion {
  3. border-bottom-color: #3a3dd1;
  4. }
  5. /* Main category headers */
  6. .algolia-docsearch-suggestion--category-header {
  7. background-color: #4b54de;
  8. }
  9. /* Highlighted search terms */
  10. .algolia-docsearch-suggestion--highlight {
  11. color: #3a33d1;
  12. }
  13. /* Highligted search terms in the main category headers */
  14. .algolia-docsearch-suggestion--category-header
  15. .algolia-docsearch-suggestion--highlight {
  16. background-color: #4d47d5;
  17. }
  18. /* Currently selected suggestion */
  19. .aa-cursor .algolia-docsearch-suggestion--content {
  20. color: #272296;
  21. }
  22. .aa-cursor .algolia-docsearch-suggestion {
  23. background: #ebebfb;
  24. }
  25. /* For bigger screens, when displaying results in two columns */
  26. @media (min-width: 768px) {
  27. /* Bottom border of each suggestion */
  28. .algolia-docsearch-suggestion {
  29. border-bottom-color: #7671df;
  30. }
  31. /* Left column, with secondary category header */
  32. .algolia-docsearch-suggestion--subcategory-column {
  33. border-right-color: #7671df;
  34. color: #4e4726;
  35. }
  36. }
  37. .searchbox {
  38. display: inline-block;
  39. position: relative;
  40. width: 200px;
  41. height: 32px !important;
  42. white-space: nowrap;
  43. box-sizing: border-box;
  44. visibility: visible !important;
  45. }
  46. .searchbox .algolia-autocomplete {
  47. display: block;
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .searchbox__wrapper {
  52. width: 100%;
  53. height: 100%;
  54. z-index: 999;
  55. position: relative;
  56. }
  57. .searchbox__input {
  58. display: inline-block;
  59. box-sizing: border-box;
  60. -webkit-transition: box-shadow 0.4s ease, background 0.4s ease;
  61. transition: box-shadow 0.4s ease, background 0.4s ease;
  62. border: 0;
  63. border-radius: 16px;
  64. box-shadow: inset 0 0 0 1px #cccccc;
  65. background: #ffffff !important;
  66. padding: 0;
  67. padding-right: 26px;
  68. padding-left: 32px;
  69. width: 100%;
  70. height: 100%;
  71. vertical-align: middle;
  72. white-space: normal;
  73. font-size: 12px;
  74. -webkit-appearance: none;
  75. -moz-appearance: none;
  76. appearance: none;
  77. }
  78. .searchbox__input::-webkit-search-decoration,
  79. .searchbox__input::-webkit-search-cancel-button,
  80. .searchbox__input::-webkit-search-results-button,
  81. .searchbox__input::-webkit-search-results-decoration {
  82. display: none;
  83. }
  84. .searchbox__input:hover {
  85. box-shadow: inset 0 0 0 1px #b3b3b3;
  86. }
  87. .searchbox__input:focus,
  88. .searchbox__input:active {
  89. outline: 0;
  90. box-shadow: inset 0 0 0 1px #aaaaaa;
  91. background: #ffffff;
  92. }
  93. .searchbox__input::-webkit-input-placeholder {
  94. color: #aaaaaa;
  95. }
  96. .searchbox__input::-moz-placeholder {
  97. color: #aaaaaa;
  98. }
  99. .searchbox__input:-ms-input-placeholder {
  100. color: #aaaaaa;
  101. }
  102. .searchbox__input::placeholder {
  103. color: #aaaaaa;
  104. }
  105. .searchbox__submit {
  106. position: absolute;
  107. top: 0;
  108. margin: 0;
  109. border: 0;
  110. border-radius: 16px 0 0 16px;
  111. background-color: rgba(69, 142, 225, 0);
  112. padding: 0;
  113. width: 32px;
  114. height: 100%;
  115. vertical-align: middle;
  116. text-align: center;
  117. font-size: inherit;
  118. -webkit-user-select: none;
  119. -moz-user-select: none;
  120. -ms-user-select: none;
  121. user-select: none;
  122. right: inherit;
  123. left: 0;
  124. }
  125. .searchbox__submit::before {
  126. display: inline-block;
  127. margin-right: -4px;
  128. height: 100%;
  129. vertical-align: middle;
  130. content: '';
  131. }
  132. .searchbox__submit:hover,
  133. .searchbox__submit:active {
  134. cursor: pointer;
  135. }
  136. .searchbox__submit:focus {
  137. outline: 0;
  138. }
  139. .searchbox__submit svg {
  140. width: 14px;
  141. height: 14px;
  142. vertical-align: middle;
  143. fill: #6d7e96;
  144. }
  145. .searchbox__reset {
  146. display: block;
  147. position: absolute;
  148. top: 8px;
  149. right: 8px;
  150. margin: 0;
  151. border: 0;
  152. background: none;
  153. cursor: pointer;
  154. padding: 0;
  155. font-size: inherit;
  156. -webkit-user-select: none;
  157. -moz-user-select: none;
  158. -ms-user-select: none;
  159. user-select: none;
  160. fill: rgba(0, 0, 0, 0.5);
  161. }
  162. .searchbox__reset.hide {
  163. display: none;
  164. }
  165. .searchbox__reset:focus {
  166. outline: 0;
  167. }
  168. .searchbox__reset svg {
  169. display: block;
  170. margin: 4px;
  171. width: 8px;
  172. height: 8px;
  173. }
  174. .searchbox__input:valid ~ .searchbox__reset {
  175. display: block;
  176. -webkit-animation-name: sbx-reset-in;
  177. animation-name: sbx-reset-in;
  178. -webkit-animation-duration: 0.15s;
  179. animation-duration: 0.15s;
  180. }
  181. @-webkit-keyframes sbx-reset-in {
  182. 0% {
  183. -webkit-transform: translate3d(-20%, 0, 0);
  184. transform: translate3d(-20%, 0, 0);
  185. opacity: 0;
  186. }
  187. 100% {
  188. -webkit-transform: none;
  189. transform: none;
  190. opacity: 1;
  191. }
  192. }
  193. @keyframes sbx-reset-in {
  194. 0% {
  195. -webkit-transform: translate3d(-20%, 0, 0);
  196. transform: translate3d(-20%, 0, 0);
  197. opacity: 0;
  198. }
  199. 100% {
  200. -webkit-transform: none;
  201. transform: none;
  202. opacity: 1;
  203. }
  204. }
  205. .algolia-autocomplete .ds-dropdown-menu:before {
  206. display: block;
  207. position: absolute;
  208. content: '';
  209. width: 14px;
  210. height: 14px;
  211. background: #373940;
  212. z-index: 1000;
  213. top: -7px;
  214. border-top: 1px solid #373940;
  215. border-right: 1px solid #373940;
  216. -webkit-transform: rotate(-45deg);
  217. transform: rotate(-45deg);
  218. border-radius: 2px;
  219. }
  220. .algolia-autocomplete .ds-dropdown-menu {
  221. box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  222. }
  223. @media (min-width: 601px) {
  224. .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
  225. right: 0 !important;
  226. left: inherit !important;
  227. }
  228. .algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before {
  229. right: 48px;
  230. }
  231. .algolia-autocomplete .ds-dropdown-menu {
  232. position: relative;
  233. top: -6px;
  234. border-radius: 4px;
  235. margin: 6px 0 0;
  236. padding: 0;
  237. text-align: left;
  238. height: auto;
  239. position: relative;
  240. background: transparent;
  241. border: none;
  242. z-index: 999;
  243. max-width: 600px;
  244. min-width: 500px;
  245. }
  246. }
  247. @media (max-width: 600px) {
  248. .algolia-autocomplete .ds-dropdown-menu {
  249. z-index: 100;
  250. position: fixed !important;
  251. top: 50px !important;
  252. left: auto !important;
  253. right: 1rem !important;
  254. width: 600px;
  255. max-width: calc(100% - 2rem);
  256. max-height: calc(100% - 5rem);
  257. display: block;
  258. }
  259. .algolia-autocomplete .ds-dropdown-menu:before {
  260. right: 6rem;
  261. }
  262. }
  263. .algolia-autocomplete .ds-dropdown-menu .ds-suggestions {
  264. position: relative;
  265. z-index: 1000;
  266. }
  267. .algolia-autocomplete .ds-dropdown-menu .ds-suggestion {
  268. cursor: pointer;
  269. }
  270. .algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
  271. position: relative;
  272. border-radius: 4px;
  273. overflow: auto;
  274. padding: 0;
  275. background: #ffffff;
  276. }
  277. .algolia-autocomplete .ds-dropdown-menu * {
  278. box-sizing: border-box;
  279. }
  280. .algolia-autocomplete .algolia-docsearch-suggestion {
  281. display: block;
  282. position: relative;
  283. padding: 0;
  284. overflow: hidden;
  285. text-decoration: none;
  286. }
  287. .algolia-autocomplete .ds-cursor .algolia-docsearch-suggestion--wrapper {
  288. background: #f1f1f1;
  289. box-shadow: inset -2px 0 0 #61dafb;
  290. }
  291. .algolia-autocomplete .algolia-docsearch-suggestion--highlight {
  292. background: #ffe564;
  293. padding: 0.1em 0.05em;
  294. }
  295. .algolia-autocomplete
  296. .algolia-docsearch-suggestion--category-header
  297. .algolia-docsearch-suggestion--category-header-lvl0
  298. .algolia-docsearch-suggestion--highlight,
  299. .algolia-autocomplete
  300. .algolia-docsearch-suggestion--category-header
  301. .algolia-docsearch-suggestion--category-header-lvl1
  302. .algolia-docsearch-suggestion--highlight {
  303. color: inherit;
  304. background: inherit;
  305. }
  306. .algolia-autocomplete
  307. .algolia-docsearch-suggestion--text
  308. .algolia-docsearch-suggestion--highlight {
  309. padding: 0 0 1px;
  310. background: inherit;
  311. box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
  312. color: inherit;
  313. }
  314. .algolia-autocomplete .algolia-docsearch-suggestion--content {
  315. display: block;
  316. float: right;
  317. width: 70%;
  318. position: relative;
  319. padding: 5.33333px 0 5.33333px 10.66667px;
  320. cursor: pointer;
  321. }
  322. .algolia-autocomplete .algolia-docsearch-suggestion--content:before {
  323. content: '';
  324. position: absolute;
  325. display: block;
  326. top: 0;
  327. height: 100%;
  328. width: 1px;
  329. background: #ececec;
  330. left: -1px;
  331. }
  332. .algolia-autocomplete .algolia-docsearch-suggestion--category-header {
  333. position: relative;
  334. display: none;
  335. font-size: 14px;
  336. letter-spacing: 0.08em;
  337. font-weight: 700;
  338. background-color: #373940;
  339. text-transform: uppercase;
  340. color: #fff;
  341. margin: 0;
  342. padding: 5px 8px;
  343. }
  344. .algolia-autocomplete .algolia-docsearch-suggestion--wrapper {
  345. background-color: #fff;
  346. width: 100%;
  347. float: left;
  348. padding: 8px 0 0 0;
  349. }
  350. .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
  351. float: left;
  352. width: 30%;
  353. display: none;
  354. padding-left: 0;
  355. text-align: right;
  356. position: relative;
  357. padding: 5.33333px 10.66667px;
  358. color: #777;
  359. font-size: 0.9em;
  360. word-wrap: break-word;
  361. }
  362. .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
  363. content: '';
  364. position: absolute;
  365. display: block;
  366. top: 0;
  367. height: 100%;
  368. width: 1px;
  369. background: #ececec;
  370. right: 0;
  371. }
  372. .algolia-autocomplete
  373. .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
  374. .algolia-docsearch-suggestion--category-header,
  375. .algolia-autocomplete
  376. .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary {
  377. display: block;
  378. }
  379. .algolia-autocomplete
  380. .algolia-docsearch-suggestion--subcategory-column
  381. .algolia-docsearch-suggestion--highlight {
  382. background-color: inherit;
  383. color: inherit;
  384. }
  385. .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline {
  386. display: none;
  387. }
  388. .algolia-autocomplete .algolia-docsearch-suggestion--title {
  389. margin-bottom: 4px;
  390. color: #02060c;
  391. font-size: 0.9em;
  392. font-weight: bold;
  393. }
  394. .algolia-autocomplete .algolia-docsearch-suggestion--text {
  395. display: block;
  396. line-height: 1.2em;
  397. font-size: 0.85em;
  398. color: #63676d;
  399. padding-right: 2px;
  400. }
  401. .algolia-autocomplete .algolia-docsearch-suggestion--version {
  402. display: block;
  403. font-size: 0.65em;
  404. color: #a6aab1;
  405. padding-top: 2px;
  406. padding-right: 2px;
  407. }
  408. .algolia-autocomplete .algolia-docsearch-suggestion--no-results {
  409. width: 100%;
  410. padding: 8px 0;
  411. text-align: center;
  412. font-size: 1.2em;
  413. background-color: #373940;
  414. margin-top: -8px;
  415. }
  416. .algolia-autocomplete
  417. .algolia-docsearch-suggestion--no-results
  418. .algolia-docsearch-suggestion--text {
  419. color: #ffffff;
  420. margin-top: 4px;
  421. }
  422. .algolia-autocomplete .algolia-docsearch-suggestion--no-results::before {
  423. display: none;
  424. }
  425. .algolia-autocomplete .algolia-docsearch-suggestion code {
  426. padding: 1px 5px;
  427. font-size: 90%;
  428. border: none;
  429. color: #222222;
  430. background-color: #ebebeb;
  431. border-radius: 3px;
  432. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  433. monospace;
  434. }
  435. .algolia-autocomplete
  436. .algolia-docsearch-suggestion
  437. code
  438. .algolia-docsearch-suggestion--highlight {
  439. background: none;
  440. }
  441. .algolia-autocomplete
  442. .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main
  443. .algolia-docsearch-suggestion--category-header {
  444. color: white;
  445. display: block;
  446. }
  447. .algolia-autocomplete
  448. .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary
  449. .algolia-docsearch-suggestion--subcategory-column {
  450. display: block;
  451. }
  452. .algolia-autocomplete .algolia-docsearch-footer {
  453. background-color: #fff;
  454. width: 100%;
  455. height: 30px;
  456. z-index: 2000;
  457. float: right;
  458. font-size: 0;
  459. line-height: 0;
  460. }
  461. .algolia-autocomplete .algolia-docsearch-footer--logo {
  462. 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.38.4.1.78.15 1.13.15.5 0 .88-.1 1.12-.3a.94.94 0 0 0 .35-.77.98.98 0 0 0-.33-.74c-.22-.2-.68-.44-1.37-.72-.72-.3-1.22-.62-1.52-1C.23 8.27.1 7.82.1 7.3c0-.65.22-1.17.7-1.55.46-.37 1.08-.56 1.86-.56.76 0 1.5.16 2.25.48l-.4 1.05c-.7-.3-1.32-.44-1.87-.44-.4 0-.73.08-.94.26a.9.9 0 0 0-.33.72c0 .2.04.38.12.52.08.15.22.3.42.4.2.14.55.3 1.06.52.58.24 1 .47 1.27.67.27.2.47.44.6.7.12.26.18.57.18.92zM9 13.27c-.92 0-1.64-.27-2.16-.8-.52-.55-.78-1.3-.78-2.24 0-.97.24-1.73.72-2.3.5-.54 1.15-.82 2-.82.78 0 1.4.25 1.85.72.46.48.7 1.14.7 1.97v.67H7.35c0 .58.17 1.02.46 1.33.3.3.7.47 1.24.47.36 0 .68-.04.98-.1a5.1 5.1 0 0 0 .98-.33v1.02a3.87 3.87 0 0 1-.94.32 5.72 5.72 0 0 1-1.08.1zm-.22-5.2c-.4 0-.73.12-.97.38s-.37.62-.42 1.1h2.7c0-.48-.13-.85-.36-1.1-.23-.26-.54-.38-.94-.38zm7.7 5.1l-.26-.84h-.05c-.28.36-.57.6-.86.74-.28.13-.65.2-1.1.2-.6 0-1.05-.16-1.38-.48-.32-.32-.5-.77-.5-1.34 0-.62.24-1.08.7-1.4.45-.3 1.14-.47 2.07-.5l1.02-.03V9.2c0-.37-.1-.65-.27-.84-.17-.2-.45-.28-.82-.28-.3 0-.6.04-.88.13a6.68 6.68 0 0 0-.8.33l-.4-.9a4.4 4.4 0 0 1 1.05-.4 4.86 4.86 0 0 1 1.08-.12c.76 0 1.33.18 1.7.5.4.33.6.85.6 1.56v4h-.9zm-1.9-.87c.47 0 .83-.13 1.1-.38.3-.26.43-.62.43-1.08v-.52l-.76.03c-.6.03-1.02.13-1.3.3s-.4.45-.4.82c0 .26.08.47.24.6.16.16.4.23.7.23zm7.57-5.2c.25 0 .46.03.62.06l-.12 1.18a2.38 2.38 0 0 0-.56-.06c-.5 0-.92.16-1.24.5-.3.32-.47.75-.47 1.27v3.1h-1.27V7.23h1l.16 1.05h.05c.2-.36.45-.64.77-.85a1.83 1.83 0 0 1 1.02-.3zm4.12 6.17c-.9 0-1.58-.27-2.05-.8-.47-.52-.7-1.27-.7-2.25 0-1 .24-1.77.73-2.3.5-.54 1.2-.8 2.12-.8.63 0 1.2.1 1.7.34l-.4 1c-.52-.2-.96-.3-1.3-.3-1.04 0-1.55.68-1.55 2.05 0 .67.13 1.17.38 1.5.26.34.64.5 1.13.5a3.23 3.23 0 0 0 1.6-.4v1.1a2.53 2.53 0 0 1-.73.28 4.36 4.36 0 0 1-.93.08zm8.28-.1h-1.27V9.5c0-.45-.1-.8-.28-1.02-.18-.23-.47-.34-.88-.34-.53 0-.9.16-1.16.48-.25.3-.38.85-.38 1.6v2.94h-1.26V4.8h1.26v2.12c0 .34-.02.7-.06 1.1h.08a1.76 1.76 0 0 1 .72-.67c.3-.16.66-.24 1.07-.24 1.43 0 2.15.74 2.15 2.2v3.86zM42.2 7.1c.74 0 1.32.28 1.73.82.4.53.62 1.3.62 2.26 0 .97-.2 1.73-.63 2.27-.42.54-1 .82-1.75.82s-1.33-.27-1.75-.8h-.08l-.23.7h-.94V4.8h1.26v2l-.02.64-.03.56h.05c.4-.6 1-.9 1.78-.9zm-.33 1.04c-.5 0-.88.15-1.1.45-.22.3-.34.8-.35 1.5v.08c0 .72.12 1.24.35 1.57.23.32.6.48 1.12.48.44 0 .78-.17 1-.53.24-.35.36-.87.36-1.53 0-1.35-.47-2.03-1.4-2.03zm3.24-.92h1.4l1.2 3.37c.18.47.3.92.36 1.34h.04l.18-.72 1.37-4H51l-2.53 6.73c-.46 1.23-1.23 1.85-2.3 1.85-.3 0-.56-.03-.83-.1v-1c.2.05.4.08.65.08.6 0 1.03-.36 1.28-1.06l.22-.56-2.4-5.94z'/%3E%3C/g%3E%3C/svg%3E");
  463. background-repeat: no-repeat;
  464. background-position: center;
  465. background-size: 100%;
  466. overflow: hidden;
  467. text-indent: -9000px;
  468. width: 110px;
  469. height: 100%;
  470. display: block;
  471. margin-left: auto;
  472. margin-right: 5px;
  473. }
  474. html[data-theme='dark'] .algolia-docsearch-suggestion--category-header,
  475. html[data-theme='dark'] .algolia-docsearch-suggestion--wrapper,
  476. html[data-theme='dark'] .algolia-docsearch-footer {
  477. background: var(--ifm-background-color) !important;
  478. color: var(--ifm-font-color-base) !important;
  479. }
  480. html[data-theme='dark'] .algolia-docsearch-suggestion--title {
  481. color: var(--ifm-font-color-base) !important;
  482. }
  483. html[data-theme='dark'] .ds-cursor .algolia-docsearch-suggestion--wrapper {
  484. background: var(--ifm-background-surface-color) !important;
  485. }
  486. mark{
  487. background-color: lightblue;
  488. }