common.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  1. /* Layout */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. html {
  8. -webkit-text-size-adjust: 100%;
  9. -ms-text-size-adjust: 100%;
  10. }
  11. body {
  12. font-family: var(--font-family);
  13. text-rendering: optimizeLegibility;
  14. color: var(--body-color);
  15. background: var(--body-background);
  16. }
  17. hr {
  18. border: 0;
  19. height: 0;
  20. border-top: 1px dotted var(--hr-border-color);
  21. padding-bottom: 10px;
  22. }
  23. h1, h2, h3 {
  24. color: var(--title-color);
  25. }
  26. main {
  27. padding-left: 5px;
  28. padding-right: 5px;
  29. margin-bottom: 30px;
  30. }
  31. a {
  32. color: var(--link-color);
  33. }
  34. a:focus {
  35. outline: 0;
  36. color: var(--link-focus-color);
  37. text-decoration: none;
  38. outline: 1px dotted #aaa;
  39. }
  40. a:hover {
  41. color: var(--link-hover-color);
  42. text-decoration: none;
  43. }
  44. /* Header and main menu */
  45. .header {
  46. margin-top: 10px;
  47. margin-bottom: 20px;
  48. }
  49. .header nav ul {
  50. display: none;
  51. }
  52. .header li {
  53. cursor: pointer;
  54. padding-left: 10px;
  55. line-height: 2.1em;
  56. font-size: 1.2em;
  57. border-bottom: 1px dotted var(--header-list-border-color);
  58. }
  59. .header li:hover a {
  60. color: #888;
  61. }
  62. .header a {
  63. font-size: 0.9em;
  64. color: var(--header-link-color);
  65. text-decoration: none;
  66. border: none;
  67. font-weight: 400;
  68. }
  69. .header .active a {
  70. color: var(--header-active-link-color);
  71. font-weight: 500;
  72. }
  73. .header a:hover {
  74. color: var(--header-link-hover-color);
  75. }
  76. .header a:focus {
  77. color: var(--header-link-focus-color);
  78. }
  79. /* Page header and footer*/
  80. .page-header {
  81. margin-bottom: 25px;
  82. }
  83. .page-footer {
  84. margin-bottom: 10px;
  85. }
  86. .page-header h1 {
  87. font-weight: 500;
  88. border-bottom: 1px dotted var(--page-header-title-border-color);
  89. }
  90. .page-header ul,
  91. .page-footer ul {
  92. margin-left: 25px;
  93. }
  94. .page-header li,
  95. .page-footer li {
  96. list-style-type: circle;
  97. line-height: 1.8em;
  98. }
  99. /* Logo */
  100. .logo {
  101. cursor: pointer;
  102. text-align: center;
  103. }
  104. .logo a {
  105. color: var(--logo-color);
  106. letter-spacing: 1px;
  107. }
  108. .logo a:hover {
  109. color: #339966;
  110. }
  111. .logo a span {
  112. color: #339966;
  113. }
  114. .logo a:hover span {
  115. color: var(--logo-hover-color-span);
  116. }
  117. /* Search form */
  118. .search {
  119. text-align: center;
  120. display: none;
  121. }
  122. .search-toggle-switch {
  123. display: none;
  124. }
  125. /* PWA prompt */
  126. #prompt-home-screen {
  127. display: none;
  128. position: fixed;
  129. bottom: 0;
  130. right: 0;
  131. width: 100%;
  132. text-align: center;
  133. background: #000;
  134. opacity: 85%;
  135. }
  136. #btn-add-to-home-screen {
  137. text-decoration: none;
  138. line-height: 30px;
  139. color: #fff;
  140. }
  141. #btn-add-to-home-screen:hover {
  142. color: red;
  143. }
  144. /* Notification - "Toast" */
  145. .toast-wrap {
  146. visibility: hidden;
  147. opacity: 0;
  148. position: fixed;
  149. left: 0;
  150. bottom: 10%;
  151. color: #fff;
  152. width: 100%;
  153. text-align: center;
  154. }
  155. .toast-msg {
  156. background-color: rgba(0,0,0,0.7);
  157. padding: 2px 5px;
  158. border-radius: 5px;
  159. }
  160. .toastAnimate {
  161. animation: toastKeyFrames 2s;
  162. }
  163. @keyframes toastKeyFrames {
  164. 0% {visibility: hidden; opacity: 0;}
  165. 25% {visibility: visible; opacity: 1; z-index: 9999}
  166. 50% {visibility: visible; opacity: 1; z-index: 9999}
  167. 75% {visibility: visible; opacity: 1; z-index: 9999}
  168. 100% {visibility: hidden; opacity: 0; z-index: 0}
  169. }
  170. @media (min-width: 600px) {
  171. body {
  172. margin: auto;
  173. max-width: 750px;
  174. }
  175. .header {
  176. margin-bottom: 0;
  177. }
  178. .logo {
  179. text-align: left;
  180. float: left;
  181. margin-right: 15px;
  182. margin-left: 5px;
  183. }
  184. .header nav ul {
  185. display: block;
  186. }
  187. .header li {
  188. display: inline;
  189. padding: 0;
  190. padding-right: 15px;
  191. line-height: normal;
  192. border: none;
  193. font-size: 1.0em;
  194. }
  195. .page-header ul,
  196. .page-footer ul {
  197. margin-left: 0;
  198. }
  199. .page-header li,
  200. .page-footer li {
  201. display: inline;
  202. padding-right: 15px;
  203. }
  204. /* Search form */
  205. .search {
  206. text-align: right;
  207. display: block;
  208. margin-top: 10px;
  209. margin-right: 5px;
  210. }
  211. .search-toggle-switch {
  212. display: block;
  213. }
  214. .search-form {
  215. display: none;
  216. }
  217. .search-toggle-switch.has-search-query {
  218. display: none;
  219. }
  220. .search-form.has-search-query {
  221. display: block;
  222. }
  223. }
  224. /* Tables */
  225. table {
  226. width: 100%;
  227. border-collapse: collapse;
  228. }
  229. table, th, td {
  230. border: 1px solid var(--table-border-color);
  231. }
  232. th, td {
  233. padding: 5px;
  234. text-align: left;
  235. }
  236. td {
  237. vertical-align: top;
  238. }
  239. th {
  240. background: var(--table-th-background);
  241. color: var(--table-th-color);
  242. font-weight: 400;
  243. }
  244. tr:hover {
  245. color: var(--table-tr-hover-color);
  246. background-color: var(--table-tr-hover-background-color);
  247. }
  248. .column-40 {
  249. width: 40%;
  250. }
  251. .column-25 {
  252. width: 25%;
  253. }
  254. .column-20 {
  255. width: 20%;
  256. }
  257. /* Forms */
  258. fieldset {
  259. border: 1px solid #ddd;
  260. padding: 8px;
  261. }
  262. legend {
  263. font-weight: 500;
  264. padding-left: 3px;
  265. padding-right: 3px;
  266. }
  267. label {
  268. cursor: pointer;
  269. display: block;
  270. }
  271. .radio-group {
  272. line-height: 1.9em;
  273. }
  274. div.radio-group label {
  275. display: inline-block;
  276. }
  277. select {
  278. margin-bottom: 15px;
  279. }
  280. input[type="search"],
  281. input[type="url"],
  282. input[type="password"],
  283. input[type="text"] {
  284. color: var(--input-color);
  285. background: var(--input-background);
  286. border: var(--input-border);
  287. padding: 3px;
  288. line-height: 20px;
  289. width: 250px;
  290. font-size: 99%;
  291. margin-bottom: 10px;
  292. margin-top: 5px;
  293. -webkit-appearance: none;
  294. }
  295. input[type="search"]:focus,
  296. input[type="url"]:focus,
  297. input[type="password"]:focus,
  298. input[type="text"]:focus {
  299. color: var(--input-focus-color);
  300. border-color: var(--input-focus-border-color);
  301. outline: 0;
  302. box-shadow: var(--input-focus-box-shadow);
  303. }
  304. input[type="checkbox"] {
  305. margin-bottom: 15px;
  306. }
  307. textarea {
  308. width: 350px;
  309. color: var(--input-color);
  310. background: var(--input-background);
  311. border: var(--input-border);
  312. padding: 3px;
  313. margin-bottom: 10px;
  314. margin-top: 5px;
  315. -webkit-appearance: none;
  316. }
  317. textarea:focus {
  318. color: var(--input-focus-color);
  319. border-color: var(--input-focus-border-color);
  320. outline: 0;
  321. box-shadow: var(--input-focus-box-shadow);
  322. }
  323. ::-moz-placeholder,
  324. ::-ms-input-placeholder,
  325. ::-webkit-input-placeholder {
  326. color: #ddd;
  327. padding-top: 2px;
  328. }
  329. .form-help {
  330. font-size: 0.9em;
  331. color: brown;
  332. margin-bottom: 15px;
  333. }
  334. .form-section {
  335. border-left: 2px dotted #ddd;
  336. padding-left: 20px;
  337. margin-left: 10px;
  338. }
  339. details > summary {
  340. outline: none;
  341. cursor: pointer;
  342. }
  343. .details-content {
  344. margin-top: 15px;
  345. }
  346. /* Buttons */
  347. a.button {
  348. text-decoration: none;
  349. }
  350. .button {
  351. display: inline-block;
  352. -webkit-appearance: none;
  353. -moz-appearance: none;
  354. font-size: 1.1em;
  355. cursor: pointer;
  356. padding: 3px 10px;
  357. border: 1px solid;
  358. border-radius: unset;
  359. }
  360. .button-primary {
  361. border-color: var(--button-primary-border-color);
  362. background: var(--button-primary-background);
  363. color: var(--button-primary-color);
  364. }
  365. .button-primary:hover,
  366. .button-primary:focus {
  367. border-color: var(--button-primary-focus-border-color);
  368. background: var(--button-primary-focus-background);
  369. }
  370. .button-danger {
  371. border-color: #b0281a;
  372. background: #d14836;
  373. color: #fff;
  374. }
  375. .button-danger:hover,
  376. .button-danger:focus {
  377. color: #fff;
  378. background: #c53727;
  379. }
  380. .button:disabled {
  381. color: #ccc;
  382. background: #f7f7f7;
  383. border-color: #ccc;
  384. }
  385. .buttons {
  386. margin-top: 10px;
  387. margin-bottom: 20px;
  388. }
  389. /* Alerts */
  390. .alert {
  391. padding: 8px 35px 8px 14px;
  392. margin-bottom: 20px;
  393. color: var(--alert-color);
  394. background-color: var(--alert-background-color);
  395. border: 1px solid var(--alert-border-color);
  396. border-radius: 4px;
  397. overflow: auto;
  398. }
  399. .alert h3 {
  400. margin-top: 0;
  401. margin-bottom: 15px;
  402. }
  403. .alert-success {
  404. color: var(--alert-success-color);
  405. background-color: var(--alert-success-background-color);
  406. border-color: var(--alert-success-border-color);
  407. }
  408. .alert-error {
  409. color: var(--alert-error-color);
  410. background-color: var(--alert-error-background-color);
  411. border-color: var(--alert-error-border-color);
  412. }
  413. .alert-error h3,
  414. .alert-error a {
  415. color: var(--alert-error-color);
  416. }
  417. .alert-info {
  418. color: var(--alert-info-color);
  419. background-color: var(--alert-info-background-color);
  420. border-color: var(--alert-info-border-color);
  421. }
  422. /* Panel */
  423. .panel {
  424. color: var(--panel-color);
  425. background-color: var(--panel-background);
  426. border: 1px solid var(--panel-border-color);
  427. border-radius: 5px;
  428. padding: 10px;
  429. margin-bottom: 15px;
  430. }
  431. .panel h3 {
  432. font-weight: 500;
  433. margin-top: 0;
  434. margin-bottom: 20px;
  435. }
  436. .panel ul {
  437. margin-left: 30px;
  438. }
  439. /* Modals */
  440. #modal-left {
  441. position: fixed;
  442. top: 0;
  443. left: 0;
  444. bottom: 0;
  445. width: 380px;
  446. overflow: auto;
  447. color: var(--modal-color);
  448. background: var(--modal-background);
  449. box-shadow: var(--modal-box-shadow);
  450. padding: 5px;
  451. padding-top: 30px;
  452. }
  453. #modal-left h3 {
  454. font-weight: 400;
  455. margin: 0;
  456. }
  457. .btn-close-modal {
  458. position: absolute;
  459. top: 0;
  460. right: 0;
  461. font-size: 1.7em;
  462. color: #ccc;
  463. padding:0 .2em;
  464. margin: 10px;
  465. text-decoration: none;
  466. }
  467. .btn-close-modal:hover {
  468. color: #999;
  469. }
  470. /* Keyboard Shortcuts */
  471. .keyboard-shortcuts li {
  472. margin-left: 25px;
  473. list-style-type: square;
  474. color: var(--keyboard-shortcuts-li-color);
  475. font-size: 0.95em;
  476. line-height: 1.45em;
  477. }
  478. .keyboard-shortcuts p {
  479. line-height: 1.9em;
  480. }
  481. /* Login form */
  482. .login-form {
  483. margin: 50px auto 0;
  484. max-width: 280px;
  485. }
  486. /* Counters */
  487. .unread-counter-wrapper,
  488. .error-feeds-counter-wrapper {
  489. font-size: 0.9em;
  490. font-weight: 300;
  491. color: var(--counter-color);
  492. }
  493. /* Category label */
  494. .category {
  495. font-size: 0.75em;
  496. background-color: var(--category-background-color);
  497. border: 1px solid var(--category-border-color);
  498. border-radius: 5px;
  499. margin-left: 0.25em;
  500. padding: 1px 0.4em 1px 0.4em;
  501. white-space: nowrap;
  502. color: var(--category-color);
  503. }
  504. .category a {
  505. color: var(--category-link-color);
  506. text-decoration: none;
  507. }
  508. .category a:hover,
  509. .category a:focus {
  510. color: var(--category-link-hover-color);
  511. }
  512. /* Pagination */
  513. .pagination {
  514. font-size: 1.1em;
  515. display: flex;
  516. align-items: center;
  517. padding-top: 8px;
  518. }
  519. .pagination-bottom {
  520. border-top: 1px dotted var(--pagination-border-color);
  521. margin-bottom: 15px;
  522. margin-top: 50px;
  523. }
  524. .pagination > div {
  525. flex: 1;
  526. }
  527. .pagination-next {
  528. text-align: right;
  529. }
  530. .pagination-prev:before {
  531. content: "« ";
  532. }
  533. .pagination-next:after {
  534. content: " »";
  535. }
  536. .pagination a {
  537. color: var(--pagination-color);
  538. }
  539. .pagination a:hover,
  540. .pagination a:focus {
  541. text-decoration: none;
  542. }
  543. /* List view */
  544. .item {
  545. border: 1px dotted var(--item-border-color);
  546. margin-bottom: 20px;
  547. padding: var(--item-padding);
  548. overflow: hidden;
  549. }
  550. .item.current-item {
  551. border: var(--current-item-border-width) solid var(--current-item-border-color);
  552. padding: 3px;
  553. box-shadow: var(--current-item-box-shadow);
  554. }
  555. .item-title a {
  556. text-decoration: none;
  557. font-weight: var(--item-title-link-font-weight);
  558. }
  559. .item-status-read .item-title a {
  560. color: var(--item-status-read-title-link-color);
  561. }
  562. .item-meta {
  563. display: flex;
  564. flex-flow: row wrap;
  565. justify-content: space-between;
  566. color: var(--item-meta-focus-color);
  567. font-size: 0.8em;
  568. }
  569. .item-meta a {
  570. color: #777;
  571. text-decoration: none;
  572. }
  573. .item-meta a:hover,
  574. .item-meta a:focus {
  575. color: #333;
  576. }
  577. .item-meta ul {
  578. margin-top: 5px;
  579. }
  580. .item-meta ul:last-child {
  581. margin-left: auto;
  582. }
  583. .item-meta li {
  584. display: inline;
  585. }
  586. .item-meta-info li:after {
  587. content: "|";
  588. color: var(--item-meta-li-color);
  589. }
  590. .item-meta-info li:last-child:after {
  591. content: "";
  592. }
  593. .item-meta-icons li {
  594. margin-right: 5px;
  595. }
  596. .item-meta-icons li:last-child {
  597. margin-right: 0;
  598. }
  599. .items {
  600. overflow-x: hidden;
  601. }
  602. .hide-read-items .item-status-read:not(.current-item) {
  603. display: none;
  604. }
  605. /* Feeds list */
  606. article.feed-parsing-error {
  607. background-color: var(--feed-parsing-error-background-color);
  608. border-color: #aaa;
  609. }
  610. .parsing-error {
  611. font-size: 0.85em;
  612. margin-top: 2px;
  613. color: var(--parsing-error-color);
  614. }
  615. .parsing-error-count {
  616. cursor: pointer;
  617. }
  618. /* Icons */
  619. .icon,
  620. .icon-label {
  621. vertical-align: middle;
  622. display: inline-block;
  623. }
  624. .icon {
  625. width: 16px;
  626. height: 16px;
  627. }
  628. /* Entry view */
  629. .entry header {
  630. padding-bottom: 5px;
  631. border-bottom: 1px dotted var(--entry-header-border-color);
  632. }
  633. .entry header h1 {
  634. font-size: 2.0em;
  635. line-height: 1.25em;
  636. margin: 5px 0 30px 0;
  637. }
  638. .entry header h1 a {
  639. text-decoration: none;
  640. color: var(--entry-header-title-link-color);
  641. }
  642. .entry header h1 a:hover,
  643. .entry header h1 a:focus {
  644. color: #666;
  645. }
  646. .entry-actions {
  647. margin-bottom: 20px;
  648. }
  649. .entry-actions a {
  650. text-decoration: none;
  651. }
  652. .entry-actions li {
  653. display: inline-block;
  654. margin-right: 15px;
  655. }
  656. .entry-meta {
  657. font-size: 0.95em;
  658. margin: 0 0 20px;
  659. color: #666;
  660. overflow-wrap: break-word;
  661. }
  662. .entry-website img {
  663. vertical-align: top;
  664. }
  665. .entry-website a {
  666. color: #666;
  667. vertical-align: top;
  668. text-decoration: none;
  669. }
  670. .entry-website a:hover,
  671. .entry-website a:focus {
  672. text-decoration: underline;
  673. }
  674. .entry-date {
  675. font-size: 0.65em;
  676. font-style: italic;
  677. color: #555;
  678. }
  679. .entry-content {
  680. padding-top: 15px;
  681. font-size: 1.2em;
  682. font-weight: 300;
  683. font-family: var(--entry-content-font-family);
  684. color: var(--entry-content-color);
  685. line-height: 1.4em;
  686. overflow-wrap: break-word;
  687. }
  688. .entry-content h1, h2, h3, h4, h5, h6 {
  689. margin-top: 15px;
  690. margin-bottom: 10px;
  691. }
  692. .entry-content iframe,
  693. .entry-content video,
  694. .entry-content img {
  695. max-width: 100%;
  696. }
  697. .entry-content figure {
  698. margin-top: 15px;
  699. margin-bottom: 15px;
  700. }
  701. .entry-content figure img {
  702. border: 1px solid #000;
  703. }
  704. .entry-content figcaption {
  705. font-size: 0.75em;
  706. text-transform: uppercase;
  707. color: #777;
  708. }
  709. .entry-content p {
  710. margin-top: 10px;
  711. margin-bottom: 15px;
  712. }
  713. .entry-content a {
  714. overflow-wrap: break-word;
  715. }
  716. .entry-content a:visited {
  717. color: purple;
  718. }
  719. .entry-content dt {
  720. font-weight: 500;
  721. margin-top: 15px;
  722. color: #555;
  723. }
  724. .entry-content dd {
  725. margin-left: 15px;
  726. margin-top: 5px;
  727. padding-left: 20px;
  728. border-left: 3px solid #ddd;
  729. color: #777;
  730. font-weight: 300;
  731. line-height: 1.4em;
  732. }
  733. .entry-content blockquote {
  734. border-left: 4px solid #ddd;
  735. padding-left: 25px;
  736. margin-left: 20px;
  737. margin-top: 20px;
  738. margin-bottom: 20px;
  739. line-height: 1.4em;
  740. font-family: var(--entry-content-quote-font-family);
  741. }
  742. .entry-content q {
  743. color: var(--entry-content-quote-color);
  744. font-family: var(--entry-content-quote-font-family);
  745. font-style: italic;
  746. }
  747. .entry-content q:before {
  748. content: "“";
  749. }
  750. .entry-content q:after {
  751. content: "”";
  752. }
  753. .entry-content pre {
  754. padding: 5px;
  755. overflow: auto;
  756. overflow-wrap: initial;
  757. border-width: 1px;
  758. border-style: solid;
  759. }
  760. .entry-content pre,
  761. .entry-content code {
  762. color: var(--entry-content-code-color);
  763. background: var(--entry-content-code-background);
  764. border-color: var(--entry-content-code-border-color);
  765. }
  766. .entry-content table {
  767. max-width: 100%;
  768. }
  769. .entry-content ul,
  770. .entry-content ol {
  771. margin-left: 30px;
  772. margin-top: 15px;
  773. margin-bottom: 15px;
  774. }
  775. .entry-content li ul,
  776. .entry-content li ol {
  777. margin-top: 0;
  778. margin-bottom: 0;
  779. }
  780. .entry-content ul {
  781. list-style-type: square;
  782. }
  783. .entry-content strong {
  784. font-weight: 600;
  785. }
  786. details.entry-enclosures {
  787. margin-top: 25px;
  788. }
  789. .entry-enclosures summary {
  790. font-weight: 500;
  791. font-size: 1.2em;
  792. }
  793. .entry-enclosure {
  794. border: 1px dotted var(--entry-enclosure-border-color);
  795. padding: 5px;
  796. margin-top: 10px;
  797. max-width: 100%;
  798. }
  799. .entry-enclosure-download {
  800. font-size: 0.85em;
  801. overflow-wrap: break-word;
  802. }
  803. .enclosure-video video,
  804. .enclosure-image img {
  805. max-width: 100%;
  806. }
  807. /* Confirmation */
  808. .confirm {
  809. font-weight: 500;
  810. color: #ed2d04;
  811. }
  812. .confirm a {
  813. color: #ed2d04;
  814. }
  815. .loading {
  816. font-style: italic;
  817. }
  818. /* Bookmarlet */
  819. .bookmarklet {
  820. border: 1px dashed #ccc;
  821. border-radius: 5px;
  822. padding: 15px;
  823. margin: 15px;
  824. text-align: center;
  825. }
  826. .bookmarklet a {
  827. font-weight: 600;
  828. text-decoration: none;
  829. font-size: 1.2em;
  830. }