pointhi.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. .github-issue-button {
  2. display: block;
  3. padding: 8px 16px;
  4. font-family: sans-serif;
  5. font-size: 16px;
  6. color: white;
  7. background-color: #238636 !important;
  8. /* important is needed cause to an !important in logicodev-dark */
  9. border: #2ea043;
  10. border-radius: 10px !important;
  11. box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
  12. }
  13. .github-issue-button:hover {
  14. background-color: #2ea043;
  15. }
  16. html {
  17. position: relative;
  18. min-height: 100%;
  19. }
  20. body {
  21. /* Margin bottom by footer height */
  22. margin-bottom: 80px;
  23. }
  24. .footer {
  25. position: absolute;
  26. bottom: 0;
  27. width: 100%;
  28. /* Set the fixed height of the footer here */
  29. height: 60px;
  30. }
  31. input[type=checkbox]:checked + .label_hide_if_checked,
  32. input[type=checkbox]:checked + .label_hide_if_not_checked + .label_hide_if_checked {
  33. display: none;
  34. }
  35. input[type=checkbox]:not(:checked) + .label_hide_if_not_checked,
  36. input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not_checked {
  37. display: none;
  38. }
  39. .onoff-checkbox {
  40. width: 15%;
  41. }
  42. .onoffswitch {
  43. position: relative;
  44. width: 110px;
  45. -webkit-user-select: none;
  46. -moz-user-select: none;
  47. -ms-user-select: none;
  48. }
  49. .onoffswitch-checkbox {
  50. display: none;
  51. }
  52. .onoffswitch-label {
  53. display: block;
  54. overflow: hidden;
  55. cursor: pointer;
  56. border: 2px solid #FFFFFF !important;
  57. border-radius: 50px !important;
  58. }
  59. .onoffswitch-inner {
  60. display: block;
  61. transition: margin 0.3s ease-in 0s;
  62. }
  63. .onoffswitch-inner:before,
  64. .onoffswitch-inner:after {
  65. display: block;
  66. float: left;
  67. width: 50%;
  68. height: 30px;
  69. padding: 0;
  70. line-height: 40px;
  71. font-size: 20px;
  72. box-sizing: border-box;
  73. content: "";
  74. background-color: #EEEEEE;
  75. }
  76. .onoffswitch-switch {
  77. display: block;
  78. width: 37px;
  79. background-color: #00CC00;
  80. position: absolute;
  81. top: 0;
  82. bottom: 0;
  83. right: 0px;
  84. border: 2px solid #FFFFFF !important;
  85. border-radius: 50px !important;
  86. transition: all 0.3s ease-in 0s;
  87. }
  88. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  89. margin-right: 0;
  90. }
  91. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  92. right: 71px;
  93. background-color: #A1A1A1;
  94. }
  95. .result_header {
  96. margin-bottom: 5px;
  97. margin-top: 20px;
  98. }
  99. .result_header .favicon {
  100. margin-bottom: -3px;
  101. }
  102. .result_header a {
  103. vertical-align: bottom;
  104. }
  105. .result_header a .highlight {
  106. font-weight: bold;
  107. }
  108. .result-content {
  109. margin-top: 5px;
  110. word-wrap: break-word;
  111. }
  112. .result-content .highlight {
  113. font-weight: bold;
  114. }
  115. .result-default {
  116. clear: both;
  117. }
  118. .result-images {
  119. float: left !important;
  120. height: 138px;
  121. }
  122. .img-thumbnail {
  123. margin: 5px;
  124. max-height: 128px;
  125. }
  126. .result-videos {
  127. clear: both;
  128. }
  129. .result-torrents {
  130. clear: both;
  131. }
  132. .result-map {
  133. clear: both;
  134. }
  135. .result-code {
  136. clear: both;
  137. }
  138. .suggestion_item {
  139. margin: 2px 5px;
  140. max-width: 100%;
  141. }
  142. .suggestion_item .btn {
  143. max-width: 100%;
  144. white-space: normal;
  145. word-wrap: break-word;
  146. text-align: left;
  147. }
  148. .result_download {
  149. margin-right: 5px;
  150. }
  151. #pagination {
  152. margin-top: 30px;
  153. padding-bottom: 50px;
  154. }
  155. .label-default {
  156. color: #AAA;
  157. background: #FFF;
  158. }
  159. .result .text-muted small {
  160. word-wrap: break-word;
  161. }
  162. .modal-wrapper {
  163. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  164. }
  165. .modal-wrapper {
  166. background-clip: padding-box;
  167. background-color: #fff;
  168. border: 1px solid rgba(0, 0, 0, 0.2);
  169. border-radius: 6px;
  170. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  171. outline: 0 none;
  172. position: relative;
  173. }
  174. .highlight {
  175. font-weight: 700;
  176. }
  177. .infobox img {
  178. max-height: 250px;
  179. }
  180. .infobox .infobox_part {
  181. margin-bottom: 20px;
  182. word-wrap: break-word;
  183. table-layout: fixed;
  184. }
  185. .infobox .infobox_part:last-child {
  186. margin-bottom: 0;
  187. }
  188. .infobox .header_url {
  189. white-space: nowrap;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. display: block;
  193. }
  194. .infobox .infobox_toggle {
  195. width: 100%;
  196. text-align: center;
  197. margin-bottom: 0px;
  198. }
  199. .infobox .infobox_checkbox ~ .infobox_body {
  200. max-height: 300px;
  201. overflow: hidden;
  202. }
  203. .infobox .infobox_checkbox:checked ~ .infobox_body {
  204. max-height: none;
  205. }
  206. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_down {
  207. display: block;
  208. }
  209. .infobox .infobox_checkbox ~ .infobox_toggle .infobox_label_up {
  210. display: none;
  211. }
  212. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_up {
  213. display: block;
  214. }
  215. .infobox .infobox_checkbox:checked ~ .infobox_toggle .infobox_label_down {
  216. display: none;
  217. }
  218. .infobox .infobox_checkbox ~ .infobox_body img.infobox_part {
  219. display: none;
  220. }
  221. .infobox .infobox_checkbox:checked ~ .infobox_body img.infobox_part {
  222. display: block;
  223. }
  224. .search_categories,
  225. #categories {
  226. text-transform: capitalize;
  227. margin-bottom: 1.5rem;
  228. margin-top: 1.5rem;
  229. display: flex;
  230. flex-wrap: wrap;
  231. align-content: stretch;
  232. }
  233. .search_categories label,
  234. #categories label,
  235. .search_categories .input-group-addon,
  236. #categories .input-group-addon {
  237. flex-grow: 1;
  238. flex-basis: auto;
  239. font-size: 1.3rem;
  240. font-weight: normal;
  241. background-color: white;
  242. border: #DDD 1px solid;
  243. border-right: none;
  244. color: #333;
  245. padding-bottom: 0.8rem;
  246. padding-top: 0.8rem;
  247. text-align: center;
  248. min-width: 50px;
  249. }
  250. .search_categories label:last-child,
  251. #categories label:last-child,
  252. .search_categories .input-group-addon:last-child,
  253. #categories .input-group-addon:last-child {
  254. border-right: #DDD 1px solid;
  255. }
  256. .search_categories input[type="checkbox"]:checked + label,
  257. #categories input[type="checkbox"]:checked + label {
  258. color: black;
  259. font-weight: bold;
  260. background-color: #EEE;
  261. }
  262. .visually-hidden {
  263. position: absolute !important;
  264. height: 1px;
  265. width: 1px;
  266. overflow: hidden;
  267. clip: rect(1px 1px 1px 1px);
  268. /* IE6, IE7 */
  269. clip: rect(1px, 1px, 1px, 1px);
  270. white-space: nowrap;
  271. /* added line */
  272. }
  273. #advanced-search-container {
  274. display: none;
  275. text-align: center;
  276. margin-bottom: 1rem;
  277. clear: both;
  278. }
  279. #advanced-search-container label,
  280. #advanced-search-container .input-group-addon {
  281. font-size: 1.3rem;
  282. font-weight: normal;
  283. background-color: white;
  284. border: #DDD 1px solid;
  285. border-right: none;
  286. color: #333;
  287. padding-bottom: 0.8rem;
  288. padding-left: 1.2rem;
  289. padding-right: 1.2rem;
  290. }
  291. #advanced-search-container label:last-child,
  292. #advanced-search-container .input-group-addon:last-child {
  293. border-right: #DDD 1px solid;
  294. }
  295. #advanced-search-container input[type="radio"] {
  296. display: none;
  297. }
  298. #advanced-search-container input[type="radio"]:checked + label {
  299. color: black;
  300. font-weight: bold;
  301. background-color: #EEE;
  302. }
  303. #check-advanced {
  304. display: none;
  305. }
  306. #check-advanced:checked ~ #advanced-search-container {
  307. display: block;
  308. }
  309. .advanced {
  310. padding: 0;
  311. margin-top: 0.3rem;
  312. text-align: right;
  313. }
  314. .advanced label,
  315. .advanced select {
  316. cursor: pointer;
  317. }
  318. .cursor-text {
  319. cursor: text !important;
  320. }
  321. .cursor-pointer {
  322. cursor: pointer !important;
  323. }
  324. /*
  325. this file is generated automatically by searx_extra/update/update_pygments.py
  326. using pygments version 2.8.1
  327. */
  328. .code-highlight .linenos {
  329. -webkit-touch-callout: none;
  330. -webkit-user-select: none;
  331. -khtml-user-select: none;
  332. -moz-user-select: none;
  333. -ms-user-select: none;
  334. user-select: none;
  335. cursor: default;
  336. margin-right: 8px;
  337. text-align: right;
  338. }
  339. .code-highlight .linenos::selection {
  340. background: transparent;
  341. /* WebKit/Blink Browsers */
  342. }
  343. .code-highlight .linenos::-moz-selection {
  344. background: transparent;
  345. /* Gecko Browsers */
  346. }
  347. .code-highlight pre {
  348. line-height: 125%;
  349. }
  350. .code-highlight td.linenos .normal {
  351. color: inherit;
  352. background-color: transparent;
  353. padding-left: 5px;
  354. padding-right: 5px;
  355. }
  356. .code-highlight span.linenos {
  357. color: inherit;
  358. background-color: transparent;
  359. padding-left: 5px;
  360. padding-right: 5px;
  361. }
  362. .code-highlight td.linenos .special {
  363. color: #000000;
  364. background-color: #ffffc0;
  365. padding-left: 5px;
  366. padding-right: 5px;
  367. }
  368. .code-highlight span.linenos.special {
  369. color: #000000;
  370. background-color: #ffffc0;
  371. padding-left: 5px;
  372. padding-right: 5px;
  373. }
  374. .code-highlight .hll {
  375. background-color: #ffffcc;
  376. }
  377. .code-highlight {
  378. background: #f8f8f8;
  379. }
  380. .code-highlight .c {
  381. color: #408080;
  382. font-style: italic;
  383. }
  384. /* Comment */
  385. .code-highlight .err {
  386. border: 1px solid #FF0000;
  387. }
  388. /* Error */
  389. .code-highlight .k {
  390. color: #008000;
  391. font-weight: bold;
  392. }
  393. /* Keyword */
  394. .code-highlight .o {
  395. color: #666666;
  396. }
  397. /* Operator */
  398. .code-highlight .ch {
  399. color: #408080;
  400. font-style: italic;
  401. }
  402. /* Comment.Hashbang */
  403. .code-highlight .cm {
  404. color: #408080;
  405. font-style: italic;
  406. }
  407. /* Comment.Multiline */
  408. .code-highlight .cp {
  409. color: #BC7A00;
  410. }
  411. /* Comment.Preproc */
  412. .code-highlight .cpf {
  413. color: #408080;
  414. font-style: italic;
  415. }
  416. /* Comment.PreprocFile */
  417. .code-highlight .c1 {
  418. color: #408080;
  419. font-style: italic;
  420. }
  421. /* Comment.Single */
  422. .code-highlight .cs {
  423. color: #408080;
  424. font-style: italic;
  425. }
  426. /* Comment.Special */
  427. .code-highlight .gd {
  428. color: #A00000;
  429. }
  430. /* Generic.Deleted */
  431. .code-highlight .ge {
  432. font-style: italic;
  433. }
  434. /* Generic.Emph */
  435. .code-highlight .gr {
  436. color: #FF0000;
  437. }
  438. /* Generic.Error */
  439. .code-highlight .gh {
  440. color: #000080;
  441. font-weight: bold;
  442. }
  443. /* Generic.Heading */
  444. .code-highlight .gi {
  445. color: #00A000;
  446. }
  447. /* Generic.Inserted */
  448. .code-highlight .go {
  449. color: #888888;
  450. }
  451. /* Generic.Output */
  452. .code-highlight .gp {
  453. color: #000080;
  454. font-weight: bold;
  455. }
  456. /* Generic.Prompt */
  457. .code-highlight .gs {
  458. font-weight: bold;
  459. }
  460. /* Generic.Strong */
  461. .code-highlight .gu {
  462. color: #800080;
  463. font-weight: bold;
  464. }
  465. /* Generic.Subheading */
  466. .code-highlight .gt {
  467. color: #0044DD;
  468. }
  469. /* Generic.Traceback */
  470. .code-highlight .kc {
  471. color: #008000;
  472. font-weight: bold;
  473. }
  474. /* Keyword.Constant */
  475. .code-highlight .kd {
  476. color: #008000;
  477. font-weight: bold;
  478. }
  479. /* Keyword.Declaration */
  480. .code-highlight .kn {
  481. color: #008000;
  482. font-weight: bold;
  483. }
  484. /* Keyword.Namespace */
  485. .code-highlight .kp {
  486. color: #008000;
  487. }
  488. /* Keyword.Pseudo */
  489. .code-highlight .kr {
  490. color: #008000;
  491. font-weight: bold;
  492. }
  493. /* Keyword.Reserved */
  494. .code-highlight .kt {
  495. color: #B00040;
  496. }
  497. /* Keyword.Type */
  498. .code-highlight .m {
  499. color: #666666;
  500. }
  501. /* Literal.Number */
  502. .code-highlight .s {
  503. color: #BA2121;
  504. }
  505. /* Literal.String */
  506. .code-highlight .na {
  507. color: #7D9029;
  508. }
  509. /* Name.Attribute */
  510. .code-highlight .nb {
  511. color: #008000;
  512. }
  513. /* Name.Builtin */
  514. .code-highlight .nc {
  515. color: #0000FF;
  516. font-weight: bold;
  517. }
  518. /* Name.Class */
  519. .code-highlight .no {
  520. color: #880000;
  521. }
  522. /* Name.Constant */
  523. .code-highlight .nd {
  524. color: #AA22FF;
  525. }
  526. /* Name.Decorator */
  527. .code-highlight .ni {
  528. color: #999999;
  529. font-weight: bold;
  530. }
  531. /* Name.Entity */
  532. .code-highlight .ne {
  533. color: #D2413A;
  534. font-weight: bold;
  535. }
  536. /* Name.Exception */
  537. .code-highlight .nf {
  538. color: #0000FF;
  539. }
  540. /* Name.Function */
  541. .code-highlight .nl {
  542. color: #A0A000;
  543. }
  544. /* Name.Label */
  545. .code-highlight .nn {
  546. color: #0000FF;
  547. font-weight: bold;
  548. }
  549. /* Name.Namespace */
  550. .code-highlight .nt {
  551. color: #008000;
  552. font-weight: bold;
  553. }
  554. /* Name.Tag */
  555. .code-highlight .nv {
  556. color: #19177C;
  557. }
  558. /* Name.Variable */
  559. .code-highlight .ow {
  560. color: #AA22FF;
  561. font-weight: bold;
  562. }
  563. /* Operator.Word */
  564. .code-highlight .w {
  565. color: #bbbbbb;
  566. }
  567. /* Text.Whitespace */
  568. .code-highlight .mb {
  569. color: #666666;
  570. }
  571. /* Literal.Number.Bin */
  572. .code-highlight .mf {
  573. color: #666666;
  574. }
  575. /* Literal.Number.Float */
  576. .code-highlight .mh {
  577. color: #666666;
  578. }
  579. /* Literal.Number.Hex */
  580. .code-highlight .mi {
  581. color: #666666;
  582. }
  583. /* Literal.Number.Integer */
  584. .code-highlight .mo {
  585. color: #666666;
  586. }
  587. /* Literal.Number.Oct */
  588. .code-highlight .sa {
  589. color: #BA2121;
  590. }
  591. /* Literal.String.Affix */
  592. .code-highlight .sb {
  593. color: #BA2121;
  594. }
  595. /* Literal.String.Backtick */
  596. .code-highlight .sc {
  597. color: #BA2121;
  598. }
  599. /* Literal.String.Char */
  600. .code-highlight .dl {
  601. color: #BA2121;
  602. }
  603. /* Literal.String.Delimiter */
  604. .code-highlight .sd {
  605. color: #BA2121;
  606. font-style: italic;
  607. }
  608. /* Literal.String.Doc */
  609. .code-highlight .s2 {
  610. color: #BA2121;
  611. }
  612. /* Literal.String.Double */
  613. .code-highlight .se {
  614. color: #BB6622;
  615. font-weight: bold;
  616. }
  617. /* Literal.String.Escape */
  618. .code-highlight .sh {
  619. color: #BA2121;
  620. }
  621. /* Literal.String.Heredoc */
  622. .code-highlight .si {
  623. color: #BB6688;
  624. font-weight: bold;
  625. }
  626. /* Literal.String.Interpol */
  627. .code-highlight .sx {
  628. color: #008000;
  629. }
  630. /* Literal.String.Other */
  631. .code-highlight .sr {
  632. color: #BB6688;
  633. }
  634. /* Literal.String.Regex */
  635. .code-highlight .s1 {
  636. color: #BA2121;
  637. }
  638. /* Literal.String.Single */
  639. .code-highlight .ss {
  640. color: #19177C;
  641. }
  642. /* Literal.String.Symbol */
  643. .code-highlight .bp {
  644. color: #008000;
  645. }
  646. /* Name.Builtin.Pseudo */
  647. .code-highlight .fm {
  648. color: #0000FF;
  649. }
  650. /* Name.Function.Magic */
  651. .code-highlight .vc {
  652. color: #19177C;
  653. }
  654. /* Name.Variable.Class */
  655. .code-highlight .vg {
  656. color: #19177C;
  657. }
  658. /* Name.Variable.Global */
  659. .code-highlight .vi {
  660. color: #19177C;
  661. }
  662. /* Name.Variable.Instance */
  663. .code-highlight .vm {
  664. color: #19177C;
  665. }
  666. /* Name.Variable.Magic */
  667. .code-highlight .il {
  668. color: #666666;
  669. }
  670. /* Literal.Number.Integer.Long */
  671. .searx-navbar {
  672. background: #eee;
  673. color: #aaa;
  674. height: 2.3rem;
  675. font-size: 1.3rem;
  676. line-height: 1.3rem;
  677. padding: 0.5rem;
  678. font-weight: bold;
  679. margin-bottom: 1.3rem;
  680. }
  681. .searx-navbar a,
  682. .searx-navbar a:hover {
  683. margin-right: 2rem;
  684. text-decoration: none;
  685. }
  686. .searx-navbar .instance a {
  687. color: #444;
  688. margin-left: 2rem;
  689. }
  690. .table > tbody > tr > td,
  691. .table > tbody > tr > th {
  692. vertical-align: middle !important;
  693. }
  694. .engine-tooltip {
  695. display: none;
  696. position: absolute;
  697. padding: 0.5rem 1rem;
  698. margin: 0rem 0 0 2rem;
  699. border: 1px solid #ddd;
  700. box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  701. background: white;
  702. font-size: 14px;
  703. font-weight: normal;
  704. z-index: 1000000;
  705. }
  706. th:hover .engine-tooltip,
  707. td:hover .engine-tooltip,
  708. .engine-tooltip:hover {
  709. display: inline-block;
  710. }
  711. /* stacked-bar-chart */
  712. .stacked-bar-chart {
  713. margin: 0;
  714. padding: 0 0.125rem 0 3rem;
  715. width: 100%;
  716. width: -moz-available;
  717. width: -webkit-fill-available;
  718. width: fill;
  719. flex-direction: row;
  720. flex-wrap: nowrap;
  721. flex-grow: 1;
  722. align-items: center;
  723. display: inline-flex;
  724. }
  725. .stacked-bar-chart-value {
  726. width: 3rem;
  727. display: inline-block;
  728. position: absolute;
  729. padding: 0 0.5rem;
  730. text-align: right;
  731. }
  732. .stacked-bar-chart-base {
  733. display: flex;
  734. flex-shrink: 0;
  735. flex-grow: 0;
  736. flex-basis: unset;
  737. }
  738. .stacked-bar-chart-median {
  739. display: flex;
  740. flex-shrink: 0;
  741. flex-grow: 0;
  742. flex-basis: unset;
  743. background: #000000;
  744. border: 1px solid rgba(0, 0, 0, 0.9);
  745. padding: 0.3rem 0;
  746. }
  747. .stacked-bar-chart-rate80 {
  748. display: flex;
  749. flex-shrink: 0;
  750. flex-grow: 0;
  751. flex-basis: unset;
  752. background: transparent;
  753. border: 1px solid rgba(0, 0, 0, 0.3);
  754. padding: 0.3rem 0;
  755. }
  756. .stacked-bar-chart-rate95 {
  757. display: flex;
  758. flex-shrink: 0;
  759. flex-grow: 0;
  760. flex-basis: unset;
  761. background: transparent;
  762. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  763. padding: 0;
  764. }
  765. .stacked-bar-chart-rate100 {
  766. display: flex;
  767. flex-shrink: 0;
  768. flex-grow: 0;
  769. flex-basis: unset;
  770. background: transparent;
  771. border-left: 1px solid rgba(0, 0, 0, 0.9);
  772. padding: 0.4rem 0;
  773. width: 1px;
  774. }
  775. .stacked-bar-chart-serie1 {
  776. display: flex;
  777. flex-shrink: 0;
  778. flex-grow: 0;
  779. flex-basis: unset;
  780. background: #5bc0de;
  781. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  782. padding: 0.4rem 0;
  783. }
  784. .stacked-bar-chart-serie2 {
  785. display: flex;
  786. flex-shrink: 0;
  787. flex-grow: 0;
  788. flex-basis: unset;
  789. background: #deb15b;
  790. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  791. padding: 0.4rem 0;
  792. }