common.css 16 KB

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