styles.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  1. /* fonts */
  2. @font-face {
  3. font-family: 'Miriam Libre';
  4. src: url('fonts/miriamlibre-bold.woff2') format('woff2'), url('fonts/miriamlibre-bold.woff') format('woff');
  5. font-weight: bold;
  6. font-style: normal;
  7. }
  8. *,
  9. *::before,
  10. *::after {
  11. font-family: inherit;
  12. color: inherit;
  13. margin: 0;
  14. padding: 0;
  15. box-sizing: border-box;
  16. }
  17. html {
  18. font-size: calc(1em + 0.33vw);
  19. font-family: PT Sans, sans-serif;
  20. line-height: 1.5;
  21. color: #111;
  22. }
  23. * + * {
  24. margin-top: 2.25rem;
  25. }
  26. br,
  27. dt,
  28. dd,
  29. th,
  30. td,
  31. option,
  32. [hidden] + *,
  33. li + li,
  34. body,
  35. .main-and-footer {
  36. margin-top: 0;
  37. }
  38. p + p {
  39. margin-top: 0.75rem;
  40. }
  41. a {
  42. text-decoration: none;
  43. border-bottom: 1px solid;
  44. }
  45. abbr {
  46. text-decoration: none;
  47. cursor: help;
  48. border-bottom: 1px dashed;
  49. }
  50. img {
  51. max-width: 100%;
  52. }
  53. p img {
  54. margin: 0.75rem 0;
  55. }
  56. figure p img {
  57. margin: 0;
  58. }
  59. :focus:not([tabindex="-1"]),
  60. [data-expands]:focus svg,
  61. .patterns a:focus .text {
  62. outline: 3px solid #ccc;
  63. outline-offset: 2px;
  64. }
  65. /* fix for IE :( */
  66. [tabindex="-1"]:focus,
  67. div:not([tabindex]):focus {
  68. outline: none;
  69. }
  70. /* skip link */
  71. [href="#main"] {
  72. display: block;
  73. width: 100%;
  74. padding: 0.75rem;
  75. color: #fff;
  76. background: #000;
  77. position: absolute;
  78. top: -3rem;
  79. text-align: center;
  80. z-index: 1;
  81. }
  82. [href="#main"]:focus {
  83. top: 0;
  84. outline: none;
  85. }
  86. /* text styles */
  87. h1,
  88. h2,
  89. h3,
  90. h4 {
  91. font-family: Miriam Libre, serif;
  92. line-height: 1.125;
  93. }
  94. h1 {
  95. font-size: 2rem;
  96. }
  97. h2 {
  98. font-size: 1.66rem;
  99. }
  100. h3 {
  101. font-size: 1.25rem;
  102. }
  103. h4,
  104. h5 {
  105. font-size: 1rem;
  106. font-family: PT Sans, sans-serif;
  107. }
  108. h5 {
  109. font-size: 0.85rem;
  110. text-transform: uppercase;
  111. }
  112. kbd {
  113. line-height: 1;
  114. font-size: 0.66rem;
  115. padding: 0.1rem 0.33rem;
  116. border-radius: 0.25rem;
  117. border: 2px solid;
  118. box-shadow: 0.125rem 0.125rem 0 #111;
  119. vertical-align: 0.33em;
  120. }
  121. pre,
  122. .file-tree {
  123. overflow-x: auto;
  124. padding: 1.5rem;
  125. border: 1px solid;
  126. }
  127. code {
  128. font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  129. font-size: 0.85em;
  130. }
  131. .cmd {
  132. padding: 0.75rem;
  133. background: #111;
  134. }
  135. .cmd code {
  136. color: #fff;
  137. white-space: nowrap;
  138. }
  139. .cmd code::before {
  140. content: '$';
  141. font-weight: bold;
  142. padding-right: 0.25em;
  143. }
  144. /* Lists */
  145. main ul,
  146. main ol {
  147. margin-left: 2.25rem;
  148. }
  149. main li + li {
  150. margin-top: 0.5rem;
  151. }
  152. main ul ul {
  153. margin-top: 0;
  154. }
  155. /* Buttons */
  156. button {
  157. font-size: 1.25rem;
  158. font-family: inherit;
  159. background: #111;
  160. color: #fff;
  161. padding: 0.75rem;
  162. border: 0;
  163. }
  164. [data-launch] {
  165. font-size: 0.75rem;
  166. margin-top: 0.75rem;
  167. padding: 0.5rem;
  168. }
  169. /* Tables */
  170. table {
  171. text-align: left;
  172. table-layout: fixed;
  173. width: 100%;
  174. border-collapse: collapse;
  175. }
  176. th,
  177. td {
  178. border: 2px solid;
  179. padding: 0.5rem;
  180. line-height: 1.25;
  181. margin: 0;
  182. }
  183. th {
  184. font-weight: bold;
  185. }
  186. th:empty {
  187. border: 0;
  188. }
  189. /* Tested using... table */
  190. .tested {
  191. text-align: center;
  192. }
  193. .tested td {
  194. vertical-align: top;
  195. overflow: hidden;
  196. }
  197. .tested th {
  198. background-color: #111;
  199. border-color: #111;
  200. color: #fff;
  201. }
  202. .tested img {
  203. max-width: 3rem;
  204. }
  205. .tested span {
  206. display: block;
  207. margin: 0;
  208. }
  209. .tested .additional {
  210. font-size: 0.85rem;
  211. }
  212. caption {
  213. font-size: 1.125rem;
  214. padding-bottom: 0.25rem;
  215. font-style: italic;
  216. }
  217. /* Page structure */
  218. .wrapper {
  219. position: relative;
  220. margin-top: 0;
  221. overflow-x: hidden;
  222. }
  223. .intro-and-nav {
  224. font-size: 0.8rem;
  225. width: 15rem;
  226. height: 100vh;
  227. position: fixed;
  228. top: 0;
  229. left: 0;
  230. border-right: 2px solid;
  231. }
  232. .intro-and-nav > div {
  233. padding: 2.25rem;
  234. display: flex;
  235. flex-direction: column;
  236. height: 100%;
  237. }
  238. .intro {
  239. flex: 1 0 auto;
  240. }
  241. .patterns {
  242. flex: 1 1 auto;
  243. }
  244. .logo {
  245. border: 0;
  246. }
  247. .logo img {
  248. width: 100%;
  249. max-width: 12rem;
  250. }
  251. .library-desc {
  252. margin-top: 0.5rem;
  253. margin-left: auto;
  254. margin-right: auto;
  255. max-width: 25rem;
  256. }
  257. .main-and-footer {
  258. margin-left: 15rem;
  259. }
  260. .main-and-footer > div {
  261. max-width: 40rem;
  262. margin: 0 auto;
  263. padding: 2.25rem;
  264. }
  265. [role="contentinfo"] {
  266. font-size: 0.85rem;
  267. margin-top: 4rem;
  268. text-align: center;
  269. }
  270. /* Patterns navigation */
  271. .patterns {
  272. overflow: auto;
  273. margin-top: 1.5rem;
  274. }
  275. .patterns * {
  276. margin-top: 0;
  277. }
  278. .patterns h3 {
  279. font-size: 1rem;
  280. }
  281. .patterns h3 + ul {
  282. margin-top: 0.75rem;
  283. }
  284. .patterns li {
  285. line-height: 1.125;
  286. list-style: none;
  287. }
  288. .patterns li + li {
  289. margin-top: 0.75rem;
  290. }
  291. .patterns ul ul {
  292. margin-left: 0.75rem;
  293. }
  294. .pattern a {
  295. border: 0;
  296. display: flex;
  297. flex-wrap: nowrap;
  298. align-items: baseline;
  299. font-weight: bold;
  300. }
  301. .pattern a:focus {
  302. outline: none;
  303. }
  304. .pattern span {
  305. margin-left: 0.125rem;
  306. }
  307. .pattern [aria-current] {
  308. background-color: #111;
  309. background-image: url(images/arrow_effect.svg);
  310. background-position: 98% center;
  311. background-size: 125%;
  312. background-repeat: no-repeat;
  313. color: #fff;
  314. padding: 0.5em 1em 0.5em;
  315. }
  316. /* menu button */
  317. #menu-button {
  318. display: none;
  319. width: 100%;
  320. text-align: center;
  321. }
  322. #menu-button:focus {
  323. outline: none;
  324. box-shadow: inset 0 0 0 0.25rem #ccc;
  325. }
  326. /* Tables of contents */
  327. .toc {
  328. font-size: 0.85rem;
  329. border: 1px solid;
  330. padding: 1.5rem;
  331. }
  332. .toc h2 {
  333. font-size: 1rem;
  334. }
  335. .toc ol {
  336. margin-left: 0.75rem;
  337. margin-top: 0.5rem;
  338. }
  339. /* Pattern lists */
  340. .patterns-list {
  341. list-style: none;
  342. margin-left: 0;
  343. }
  344. .patterns-list h2 {
  345. font-size: 1.25rem;
  346. }
  347. .patterns-list li + li {
  348. margin-top: 1rem;
  349. padding-top: 1rem;
  350. border-top: 2px solid;
  351. }
  352. .patterns-list a {
  353. border: 0;
  354. }
  355. /* Tags */
  356. .tags {
  357. margin-top: 0;
  358. font-size: 0.85rem;
  359. }
  360. .tags * {
  361. display: inline;
  362. margin: 0;
  363. }
  364. .tags strong {
  365. margin-right: 0.25rem;
  366. }
  367. .tags li {
  368. white-space: nowrap;
  369. margin: 0 0.25rem 0 0;
  370. }
  371. /* Notes and warnings */
  372. .note {
  373. border-left: 0.5rem solid;
  374. font-size: 0.85rem;
  375. }
  376. .note svg {
  377. height: 2.25rem;
  378. width: 2.25rem;
  379. }
  380. .note > div {
  381. margin-left: 0.75rem;
  382. }
  383. .note > div > img:first-child {
  384. height: 1.5rem;
  385. }
  386. .note > div >:first-child + * {
  387. margin-top: 0;
  388. }
  389. .note.warning {
  390. border-left: 0;
  391. background-image: url(images/stripe.svg);
  392. background-size: 0.5rem auto;
  393. background-repeat: repeat-y;
  394. }
  395. .note.warning > div {
  396. margin-left: 1.25rem;
  397. }
  398. /* Tick lists */
  399. .ticks li {
  400. list-style: none;
  401. position: relative;
  402. }
  403. .ticks li::before {
  404. content: '';
  405. display: inline-block;
  406. width: 1rem;
  407. height: 1rem;
  408. margin-right: 0.25rem;
  409. background-image: url(images/icon-tick.svg);
  410. background-size: 100% auto;
  411. position: absolute;
  412. left: -1.25rem;
  413. top: 0.25rem;
  414. }
  415. /* Figures */
  416. figure {
  417. text-align: center;
  418. }
  419. figcaption {
  420. font-size: 0.85rem;
  421. font-style: italic;
  422. margin-top: 0.5rem;
  423. }
  424. main {
  425. display: block;
  426. counter-reset: fig;
  427. min-height: 100vh;
  428. }
  429. figcaption::before {
  430. counter-increment: fig;
  431. content: 'Figure ' counter(fig) ':\0020';
  432. font-weight: bold;
  433. }
  434. /* Code blocks */
  435. pre[class*=language-] {
  436. background: none;
  437. margin-top: 2.25rem;
  438. margin-bottom: 0;
  439. overflow-y: hidden;
  440. overflow-x: auto;
  441. }
  442. code[class*="language-"], pre[class*="language-"] {
  443. text-shadow: none;
  444. }
  445. pre[class*=language-][data-line] {
  446. padding: 1em 0 0 2.25rem;
  447. }
  448. pre[class*=language-] code * {
  449. margin-top: 0 !important;
  450. }
  451. [data-codeblock-shortcode] {
  452. display: block;
  453. margin-top: -1rem;
  454. }
  455. .token.property,
  456. .token.tag,
  457. .token.boolean,
  458. .token.number,
  459. .token.constant,
  460. .token.symbol,
  461. .token.deleted {
  462. color: #888;
  463. }
  464. .token.selector,
  465. .token.attr-name,
  466. .token.string,
  467. .token.char,
  468. .token.builtin,
  469. .token.inserted {
  470. color: #111;
  471. }
  472. .token.operator,
  473. .token.entity,
  474. .token.url,
  475. .language-css .token.string,
  476. .style .token.string {
  477. color: #333;
  478. background: none;
  479. }
  480. .token.atrule,
  481. .token.attr-value,
  482. .token.keyword {
  483. color: #666;
  484. }
  485. .token.function {
  486. color: #888;
  487. }
  488. .line-numbers code {
  489. padding-left: 3rem;
  490. margin-top: -1rem;
  491. overflow-x: auto;
  492. overflow-y: hidden;
  493. }
  494. .line-numbers {
  495. padding: 1.5rem !important;
  496. }
  497. .line-numbers .line-numbers-rows {
  498. margin-left: 2.25rem;
  499. left: -3.5em;
  500. top: 1.25rem;
  501. color: #111;
  502. border-color: #111;
  503. }
  504. .line-numbers-rows > span:before {
  505. color: inherit;
  506. }
  507. /* file tree lists */
  508. .file-tree {
  509. overflow-x: auto;
  510. }
  511. .file-tree ul {
  512. font-family: Courier, monospace;
  513. margin: 0;
  514. padding: 0;
  515. padding-left: 3rem;
  516. list-style: none;
  517. line-height: 1.25;
  518. position: relative;
  519. }
  520. .file-tree > ul {
  521. padding-left: 0;
  522. overflow-x: auto;
  523. overflow-y: hidden;
  524. }
  525. .file-tree li {
  526. background: #fff;
  527. position: relative;
  528. white-space: nowrap;
  529. }
  530. .file-tree li + li {
  531. margin-top: 0;
  532. }
  533. .file-tree li:not(:last-child) > ul::before {
  534. content: '\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020\2502\0020';
  535. position: absolute;
  536. left: 0;
  537. top: 0;
  538. bottom: 0;
  539. width: 1em;
  540. white-space: normal;
  541. }
  542. .file-tree li::before {
  543. content: '\251C\2500\2500\0020';
  544. }
  545. .file-tree li:last-child::before {
  546. content: '\2514\2500\2500\0020';
  547. }
  548. /* Expandable sections */
  549. .expandable-section {
  550. border-top: 1px solid;
  551. border-bottom: 1px solid;
  552. padding: 0.75rem 0;
  553. }
  554. [id^="js-expandable-"] {
  555. margin: 0;
  556. padding: 1.5rem 0 0.75rem;
  557. }
  558. @media screen {
  559. .expandable-section + .expandable-section {
  560. margin-top: 0;
  561. border-top: 0;
  562. }
  563. }
  564. [data-expands] {
  565. text-align: left;
  566. color: #111;
  567. border: 0;
  568. background: none;
  569. width: 100%;
  570. padding: 0;
  571. margin: 0;
  572. display: flex;
  573. align-items: center;
  574. justify-content: space-between;
  575. cursor: pointer;
  576. }
  577. [data-expands] svg {
  578. margin-top: 0;
  579. width: 1em;
  580. height: 1em;
  581. }
  582. [data-expands][aria-expanded="true"] svg .up-strut {
  583. display: none;
  584. }
  585. [data-expands]:focus {
  586. outline: none;
  587. }
  588. p:empty {
  589. display: none;
  590. }
  591. *:not(p) + p:empty + p {
  592. margin-top: 2.25rem;
  593. }
  594. /* WCAG and principles */
  595. .wcag ul li {
  596. font-size: 0.85em;
  597. }
  598. .principles p {
  599. font-size: 0.85rem;
  600. margin-top: 0.75rem;
  601. }
  602. .principles.with-desc > li + li,
  603. .wcag.with-desc > li + li {
  604. border-top: 1px solid;
  605. margin-top: 0.75rem;
  606. padding-top: 0.75rem;
  607. }
  608. /* Site errors */
  609. .site-error {
  610. padding: 1.5rem;
  611. background: #efefef;
  612. }
  613. .site-error strong {
  614. color: #C83737;
  615. }
  616. /* SVG icons */
  617. a svg,
  618. button svg,
  619. h1 svg {
  620. height: 0.75em;
  621. width: auto;
  622. margin-right: 0.25em;
  623. }
  624. h1 svg,
  625. li > svg,
  626. h2 a svg {
  627. height: 1em;
  628. vertical-align: middle;
  629. }
  630. h1 svg {
  631. margin-right: 0;
  632. }
  633. .print {
  634. white-space: nowrap;
  635. font-style: normal;
  636. }
  637. .svg-outer {
  638. width: 0.75em;
  639. display: inline-block;
  640. vertical-align: middle;
  641. }
  642. /* Color palettes */
  643. .colors {
  644. display: flex;
  645. height: 5rem;
  646. margin: -0.25rem;
  647. list-style: none;
  648. flex-wrap: nowrap;
  649. }
  650. .colors li {
  651. margin: 0.25rem;
  652. flex: 1 0 auto;
  653. position: relative;
  654. }
  655. .colors span {
  656. line-height: 1;
  657. background-color: #111;
  658. color: #fff;
  659. font-size: 0.75rem;
  660. padding: 0.25rem;
  661. position: absolute;
  662. bottom: 0.25rem;
  663. right: 0.25rem;
  664. }
  665. /* cross references */
  666. .pattern-link {
  667. font-weight: bold;
  668. }
  669. /* inline demos */
  670. .demo-inner {
  671. border-top: 1px solid;
  672. border-bottom: 1px solid;
  673. padding: 1.5rem 0 0;
  674. text-align: right;
  675. }
  676. [id^="js-demo-"] {
  677. all: initial;
  678. display: block;
  679. }
  680. /* Section links */
  681. .h2-container {
  682. position: relative;
  683. font-size: 1.66rem;
  684. }
  685. .h2-container a {
  686. position: absolute;
  687. margin-top: 0;
  688. top: 0;
  689. line-height: 1;
  690. left: -1em;
  691. border: 0;
  692. }
  693. /* Single page layout */
  694. .wrapper.print-version .main-and-footer {
  695. margin-left: 0;
  696. }
  697. .wrapper.print-version .intro-and-nav {
  698. position: static;
  699. border: 0;
  700. width: auto;
  701. text-align: center;
  702. display: flex;
  703. align-items: center;
  704. justify-content: center;
  705. }
  706. .wrapper.print-version main {
  707. min-height: 0;
  708. }
  709. .wrapper.print-version .library-desc {
  710. font-size: 1rem;
  711. }
  712. .wrapper.print-version .intro-and-nav > div {
  713. height: auto;
  714. }
  715. .wrapper.print-version #patterns-list {
  716. margin-left: 0;
  717. margin-top: 1.5rem;
  718. display: block;
  719. }
  720. .wrapper.print-version .toc {
  721. font-size: 1rem;
  722. }
  723. .wrapper.print-version .toc h2 {
  724. font-size: 1.66rem;
  725. }
  726. .wrapper.print-version #patterns-list h3 {
  727. font-size: 1.25rem;
  728. }
  729. .wrapper.print-version .patterns {
  730. margin-top: 0;
  731. }
  732. .pattern-section:not(:last-child) {
  733. padding-bottom: 2.25rem;
  734. border-bottom: 2px solid;
  735. }
  736. .pattern-section h1 {
  737. padding: 0 !important;
  738. }
  739. @media screen and (max-width: 45em) {
  740. [role="banner"] {
  741. position: static;
  742. width: auto;
  743. height: auto;
  744. }
  745. .intro {
  746. text-align: center;
  747. }
  748. .intro-and-nav > div {
  749. padding: 1.5rem;
  750. }
  751. .main-and-footer {
  752. margin: 0;
  753. }
  754. .patterns h3 {
  755. font-size: 1.125rem;
  756. border-top: 4px solid;
  757. border-bottom: 4px solid;
  758. padding: 0.75rem 0;
  759. }
  760. .patterns li:not(.pattern) {
  761. margin-top: 0;
  762. }
  763. .patterns ul ul {
  764. margin: 0;
  765. }
  766. .patterns li {
  767. margin-top: 0;
  768. }
  769. .pattern {
  770. font-size: 1rem;
  771. }
  772. .pattern a {
  773. padding: 0.75rem 0;
  774. }
  775. .pattern [aria-current] {
  776. background-image: none;
  777. }
  778. .pattern + .pattern {
  779. border-top: 1px solid;
  780. margin-top: 0;
  781. }
  782. #menu-button {
  783. display: block;
  784. }
  785. #patterns-list {
  786. display: none;
  787. }
  788. .toc-link {
  789. display: none;
  790. }
  791. [aria-expanded="true"] + #patterns-list {
  792. display: block;
  793. }
  794. code {
  795. word-break: break-all;
  796. }
  797. .tested th,
  798. .tested td {
  799. display: block;
  800. }
  801. .tested td + td {
  802. border-top: 0;
  803. }
  804. }
  805. @media print {
  806. .wrapper:not(.print-version) .intro-and-nav,
  807. .wrapper:not(.print-version) [role="contentinfo"] {
  808. display: none;
  809. }
  810. .main-and-footer {
  811. margin-left: 0;
  812. }
  813. a {
  814. border: 0;
  815. }
  816. main a::after {
  817. content: " (" attr(href) ")";
  818. word-break: break-word;
  819. }
  820. main nav a::after {
  821. content: '';
  822. }
  823. .cmd code {
  824. background: #fff;
  825. color: #111;
  826. }
  827. pre code {
  828. white-space: pre-wrap !important;
  829. }
  830. .line-numbers .line-numbers-rows {
  831. display: none;
  832. }
  833. .line-numbers code {
  834. padding-left: 0;
  835. }
  836. .expandable-section {
  837. border: 0;
  838. padding: 0;
  839. }
  840. .expandable-section + p {
  841. margin-top: 0.75rem;
  842. }
  843. [id^="js-expandable-"] {
  844. display: block;
  845. }
  846. [data-expands] svg {
  847. display: none;
  848. }
  849. main *:not(.with-desc) {
  850. page-break-inside: avoid;
  851. }
  852. .note.warning {
  853. border-left: 0.5rem solid;
  854. background: none;
  855. }
  856. }
  857. @media (-ms-high-contrast: active) {
  858. img[src*=".svg"] {
  859. background: #fff;
  860. padding: 0.5rem;
  861. }
  862. .ticks li::before {
  863. content: '✓';
  864. background: none;
  865. width: auto;
  866. top: 0;
  867. }
  868. }