logicodev-dark.css 14 KB

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