common.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  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 li {
  581. display: inline;
  582. }
  583. .item-meta-info li:after {
  584. content: "|";
  585. color: var(--item-meta-li-color);
  586. }
  587. .item-meta-info li:last-child:after {
  588. content: "";
  589. }
  590. .item-meta-icons li {
  591. margin-right: 5px;
  592. }
  593. .item-meta-icons li:last-child {
  594. margin-right: 0;
  595. }
  596. .items {
  597. overflow-x: hidden;
  598. }
  599. .hide-read-items .item-status-read:not(.current-item) {
  600. display: none;
  601. }
  602. /* Feeds list */
  603. article.feed-parsing-error {
  604. background-color: var(--feed-parsing-error-background-color);
  605. border-color: #aaa;
  606. }
  607. .parsing-error {
  608. font-size: 0.85em;
  609. margin-top: 2px;
  610. color: var(--parsing-error-color);
  611. }
  612. .parsing-error-count {
  613. cursor: pointer;
  614. }
  615. /* Icons */
  616. .icon,
  617. .icon-label {
  618. vertical-align: middle;
  619. display: inline-block;
  620. }
  621. .icon {
  622. width: 16px;
  623. height: 16px;
  624. }
  625. /* Entry view */
  626. .entry header {
  627. padding-bottom: 5px;
  628. border-bottom: 1px dotted var(--entry-header-border-color);
  629. }
  630. .entry header h1 {
  631. font-size: 2.0em;
  632. line-height: 1.25em;
  633. margin: 5px 0 30px 0;
  634. }
  635. .entry header h1 a {
  636. text-decoration: none;
  637. color: var(--entry-header-title-link-color);
  638. }
  639. .entry header h1 a:hover,
  640. .entry header h1 a:focus {
  641. color: #666;
  642. }
  643. .entry-actions {
  644. margin-bottom: 20px;
  645. }
  646. .entry-actions a {
  647. text-decoration: none;
  648. }
  649. .entry-actions li {
  650. display: inline-block;
  651. margin-right: 15px;
  652. }
  653. .entry-meta {
  654. font-size: 0.95em;
  655. margin: 0 0 20px;
  656. color: #666;
  657. overflow-wrap: break-word;
  658. }
  659. .entry-website img {
  660. vertical-align: top;
  661. }
  662. .entry-website a {
  663. color: #666;
  664. vertical-align: top;
  665. text-decoration: none;
  666. }
  667. .entry-website a:hover,
  668. .entry-website a:focus {
  669. text-decoration: underline;
  670. }
  671. .entry-date {
  672. font-size: 0.65em;
  673. font-style: italic;
  674. color: #555;
  675. }
  676. .entry-content {
  677. padding-top: 15px;
  678. font-size: 1.2em;
  679. font-weight: 300;
  680. font-family: var(--entry-content-font-family);
  681. color: var(--entry-content-color);
  682. line-height: 1.4em;
  683. overflow-wrap: break-word;
  684. }
  685. .entry-content h1, h2, h3, h4, h5, h6 {
  686. margin-top: 15px;
  687. margin-bottom: 10px;
  688. }
  689. .entry-content iframe,
  690. .entry-content video,
  691. .entry-content img {
  692. max-width: 100%;
  693. }
  694. .entry-content figure {
  695. margin-top: 15px;
  696. margin-bottom: 15px;
  697. }
  698. .entry-content figure img {
  699. border: 1px solid #000;
  700. }
  701. .entry-content figcaption {
  702. font-size: 0.75em;
  703. text-transform: uppercase;
  704. color: #777;
  705. }
  706. .entry-content p {
  707. margin-top: 10px;
  708. margin-bottom: 15px;
  709. }
  710. .entry-content a {
  711. overflow-wrap: break-word;
  712. }
  713. .entry-content a:visited {
  714. color: purple;
  715. }
  716. .entry-content dt {
  717. font-weight: 500;
  718. margin-top: 15px;
  719. color: #555;
  720. }
  721. .entry-content dd {
  722. margin-left: 15px;
  723. margin-top: 5px;
  724. padding-left: 20px;
  725. border-left: 3px solid #ddd;
  726. color: #777;
  727. font-weight: 300;
  728. line-height: 1.4em;
  729. }
  730. .entry-content blockquote {
  731. border-left: 4px solid #ddd;
  732. padding-left: 25px;
  733. margin-left: 20px;
  734. margin-top: 20px;
  735. margin-bottom: 20px;
  736. line-height: 1.4em;
  737. font-family: var(--entry-content-quote-font-family);
  738. }
  739. .entry-content q {
  740. color: var(--entry-content-quote-color);
  741. font-family: var(--entry-content-quote-font-family);
  742. font-style: italic;
  743. }
  744. .entry-content q:before {
  745. content: "“";
  746. }
  747. .entry-content q:after {
  748. content: "”";
  749. }
  750. .entry-content pre {
  751. padding: 5px;
  752. overflow: auto;
  753. overflow-wrap: initial;
  754. border-width: 1px;
  755. border-style: solid;
  756. }
  757. .entry-content pre,
  758. .entry-content code {
  759. color: var(--entry-content-code-color);
  760. background: var(--entry-content-code-background);
  761. border-color: var(--entry-content-code-border-color);
  762. }
  763. .entry-content table {
  764. max-width: 100%;
  765. }
  766. .entry-content ul,
  767. .entry-content ol {
  768. margin-left: 30px;
  769. margin-top: 15px;
  770. margin-bottom: 15px;
  771. }
  772. .entry-content li ul,
  773. .entry-content li ol {
  774. margin-top: 0;
  775. margin-bottom: 0;
  776. }
  777. .entry-content ul {
  778. list-style-type: square;
  779. }
  780. .entry-content strong {
  781. font-weight: 600;
  782. }
  783. details.entry-enclosures {
  784. margin-top: 25px;
  785. }
  786. .entry-enclosures summary {
  787. font-weight: 500;
  788. font-size: 1.2em;
  789. }
  790. .entry-enclosure {
  791. border: 1px dotted var(--entry-enclosure-border-color);
  792. padding: 5px;
  793. margin-top: 10px;
  794. max-width: 100%;
  795. }
  796. .entry-enclosure-download {
  797. font-size: 0.85em;
  798. overflow-wrap: break-word;
  799. }
  800. .enclosure-video video,
  801. .enclosure-image img {
  802. max-width: 100%;
  803. }
  804. /* Confirmation */
  805. .confirm {
  806. font-weight: 500;
  807. color: #ed2d04;
  808. }
  809. .confirm a {
  810. color: #ed2d04;
  811. }
  812. .loading {
  813. font-style: italic;
  814. }
  815. /* Bookmarlet */
  816. .bookmarklet {
  817. border: 1px dashed #ccc;
  818. border-radius: 5px;
  819. padding: 15px;
  820. margin: 15px;
  821. text-align: center;
  822. }
  823. .bookmarklet a {
  824. font-weight: 600;
  825. text-decoration: none;
  826. font-size: 1.2em;
  827. }