common.css 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  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. .sr-only {
  45. border: 0 !important;
  46. clip: rect(1px, 1px, 1px, 1px) !important;
  47. -webkit-clip-path: inset(50%) !important;
  48. clip-path: inset(50%) !important;
  49. height: 1px !important;
  50. overflow: hidden !important;
  51. margin: -1px !important;
  52. padding: 0 !important;
  53. position: absolute !important;
  54. width: 1px !important;
  55. white-space: nowrap !important;
  56. }
  57. .skip-to-content-link {
  58. --padding-size: 8px;
  59. --border-size: 1px;
  60. background-color: var(--category-background-color);
  61. color: var(--category-color);
  62. border: var(--border-size) solid var(--category-border-color);
  63. border-radius: 5px;
  64. inset-inline-start: 50%;
  65. padding: var(--padding-size);
  66. position: absolute;
  67. transition: translate 0.3s;
  68. translate: -50% calc(-100% - calc(var(--padding-size) * 2) - calc(var(--border-size) * 2));
  69. }
  70. .skip-to-content-link:focus {
  71. translate: -50% 0;
  72. }
  73. /* Header and main menu */
  74. .header {
  75. margin-top: 10px;
  76. margin-bottom: 20px;
  77. }
  78. .header nav {
  79. display: flex;
  80. align-items: stretch;
  81. flex-direction: column;
  82. }
  83. .header nav button[aria-controls="header-menu"] {
  84. border: none;
  85. background-color: transparent;
  86. display: inline-block;
  87. cursor: pointer;
  88. }
  89. .header nav button[aria-controls="header-menu"] svg {
  90. padding: 5px;
  91. inline-size: 24px;
  92. block-size: 24px;
  93. translate: 0 2px;
  94. }
  95. .header nav button[aria-controls="header-menu"][aria-expanded="true"] svg {
  96. rotate: 180deg;
  97. }
  98. .header ul.js-menu-show {
  99. display: initial;
  100. }
  101. .header ul:not(.js-menu-show) {
  102. display: none;
  103. }
  104. .header li {
  105. cursor: pointer;
  106. padding-left: 10px;
  107. line-height: 2.1em;
  108. font-size: 1.2em;
  109. border-bottom: 1px dotted var(--header-list-border-color);
  110. }
  111. .header li a:hover {
  112. color: #888;
  113. }
  114. .header a {
  115. font-size: 0.9em;
  116. color: var(--header-link-color);
  117. text-decoration: none;
  118. border: none;
  119. font-weight: 400;
  120. }
  121. .header .active a {
  122. color: var(--header-active-link-color);
  123. /* Note: Firefox on Windows does not show the link as bold if the value is under 600 */
  124. font-weight: 600;
  125. }
  126. .header a:hover {
  127. color: var(--header-link-hover-color);
  128. }
  129. .header a:focus {
  130. color: var(--header-link-focus-color);
  131. }
  132. /* Page header and footer*/
  133. .page-header {
  134. padding-inline: 5px;
  135. margin-bottom: 25px;
  136. }
  137. .page-footer {
  138. margin-bottom: 10px;
  139. }
  140. .page-header h1 {
  141. font-weight: 500;
  142. border-bottom: 1px dotted var(--page-header-title-border-color);
  143. font-size: 1.5rem;
  144. }
  145. .page-header h1 a {
  146. text-decoration: none;
  147. color: var(--page-header-title-color);
  148. }
  149. .page-header h1 a:hover,
  150. .page-header h1 a:focus {
  151. color: #666;
  152. }
  153. .page-header li,
  154. .page-footer li {
  155. list-style-type: none;
  156. line-height: 1.8em;
  157. white-space: nowrap;
  158. }
  159. .page-header ul a .icon {
  160. padding-bottom: 2px;
  161. }
  162. /* Logo */
  163. .logo {
  164. text-align: center;
  165. display: flex;
  166. justify-content: center;
  167. }
  168. .logo a {
  169. color: var(--logo-color);
  170. letter-spacing: 1px;
  171. display: flex;
  172. align-items: center;
  173. }
  174. .logo a:hover {
  175. color: #339966;
  176. }
  177. .logo a span {
  178. color: #339966;
  179. }
  180. .logo a:hover span {
  181. color: var(--logo-hover-color-span);
  182. }
  183. /* Search form */
  184. .search {
  185. text-align: center;
  186. margin-top: 10px;
  187. margin-right: 5px;
  188. }
  189. .search details svg {
  190. padding: 5px;
  191. inline-size: 24px;
  192. block-size: 24px;
  193. translate: 0 -1px;
  194. }
  195. .search details[open] svg {
  196. rotate: 180deg;
  197. }
  198. .search details > summary {
  199. list-style: none;
  200. display: flex;
  201. justify-content: center;
  202. inline-size: fit-content;
  203. margin-inline: auto;
  204. }
  205. .search details > summary::marker, /* Latest Chrome, Edge, Firefox */
  206. .search details > summary::-webkit-details-marker /* Safari */ {
  207. display: none;
  208. }
  209. .search-toggle-switch {
  210. display: none;
  211. }
  212. /* PWA prompt */
  213. #prompt-home-screen {
  214. display: none;
  215. position: fixed;
  216. bottom: 0;
  217. right: 0;
  218. width: 100%;
  219. text-align: center;
  220. background: #000;
  221. opacity: 85%;
  222. }
  223. #btn-add-to-home-screen {
  224. text-decoration: none;
  225. line-height: 30px;
  226. color: #fff;
  227. }
  228. #btn-add-to-home-screen:hover {
  229. color: red;
  230. }
  231. /* Notification - "Toast" */
  232. #toast-wrapper {
  233. visibility: hidden;
  234. opacity: 0;
  235. position: fixed;
  236. left: 0;
  237. bottom: 10%;
  238. color: #fff;
  239. width: 100%;
  240. text-align: center;
  241. }
  242. #toast-msg {
  243. background-color: rgba(0,0,0,0.7);
  244. padding-bottom: 4px;
  245. padding-left: 4px;
  246. padding-right: 5px;
  247. border-radius: 5px;
  248. }
  249. .toast-animate {
  250. animation: toastKeyFrames 2s;
  251. }
  252. @keyframes toastKeyFrames {
  253. 0% {visibility: hidden; opacity: 0;}
  254. 25% {visibility: visible; opacity: 1; z-index: 9999}
  255. 50% {visibility: visible; opacity: 1; z-index: 9999}
  256. 75% {visibility: visible; opacity: 1; z-index: 9999}
  257. 100% {visibility: hidden; opacity: 0; z-index: 0}
  258. }
  259. @media (min-width: 620px) {
  260. body {
  261. margin: auto;
  262. max-width: 750px;
  263. }
  264. .header {
  265. margin-bottom: 0;
  266. }
  267. .logo {
  268. text-align: left;
  269. float: left;
  270. margin-right: 15px;
  271. margin-left: 5px;
  272. }
  273. .header li {
  274. display: inline;
  275. padding: 0;
  276. padding-right: 15px;
  277. line-height: normal;
  278. border: none;
  279. font-size: 1.0em;
  280. }
  281. .header nav {
  282. align-items: start;
  283. flex-direction: row;
  284. }
  285. .header nav button[aria-controls="header-menu"] svg {
  286. display: none;
  287. }
  288. .header nav button[aria-controls="header-menu"] svg {
  289. rotate: -90deg;
  290. }
  291. .header nav button[aria-controls="header-menu"][aria-expanded="true"] svg {
  292. rotate: 90deg;
  293. }
  294. .header ul:not(.js-menu-show), .header ul.js-menu-show {
  295. display: revert;
  296. }
  297. .page-header li,
  298. .page-footer li {
  299. display: inline;
  300. padding-right: 15px;
  301. }
  302. /* Search form */
  303. .search {
  304. text-align: right;
  305. display: block;
  306. }
  307. .search details > summary {
  308. margin-inline: auto 0;
  309. }
  310. .search-toggle-switch {
  311. display: block;
  312. }
  313. .search-form {
  314. display: none;
  315. }
  316. .search-toggle-switch.has-search-query {
  317. display: none;
  318. }
  319. .search-form.has-search-query {
  320. display: block;
  321. }
  322. }
  323. /* Tables */
  324. table {
  325. width: 100%;
  326. border-collapse: collapse;
  327. }
  328. table, th, td {
  329. border: 1px solid var(--table-border-color);
  330. }
  331. th, td {
  332. padding: 5px;
  333. text-align: left;
  334. }
  335. td {
  336. vertical-align: top;
  337. }
  338. th {
  339. background: var(--table-th-background);
  340. color: var(--table-th-color);
  341. font-weight: 400;
  342. }
  343. tr:hover {
  344. color: var(--table-tr-hover-color);
  345. background-color: var(--table-tr-hover-background-color);
  346. }
  347. .column-40 {
  348. width: 40%;
  349. }
  350. .column-25 {
  351. width: 25%;
  352. }
  353. .column-20 {
  354. width: 20%;
  355. }
  356. /* Forms */
  357. fieldset {
  358. border: 1px dotted #ddd;
  359. padding: 8px;
  360. margin-bottom: 20px;
  361. }
  362. legend {
  363. font-weight: 500;
  364. padding-left: 3px;
  365. padding-right: 3px;
  366. }
  367. label {
  368. cursor: pointer;
  369. display: block;
  370. }
  371. .radio-group {
  372. line-height: 1.9em;
  373. }
  374. div.radio-group label {
  375. display: inline-block;
  376. }
  377. select {
  378. margin-bottom: 15px;
  379. }
  380. input[type="search"],
  381. input[type="url"],
  382. input[type="password"],
  383. input[type="text"],
  384. input[type="number"] {
  385. color: var(--input-color);
  386. background: var(--input-background);
  387. border: var(--input-border);
  388. padding: 3px;
  389. line-height: 20px;
  390. width: 250px;
  391. font-size: 99%;
  392. margin-bottom: 10px;
  393. margin-top: 5px;
  394. appearance: none;
  395. }
  396. input[type="search"]:focus,
  397. input[type="url"]:focus,
  398. input[type="password"]:focus,
  399. input[type="text"]:focus,
  400. input[type="number"]:focus {
  401. color: var(--input-focus-color);
  402. border-color: var(--input-focus-border-color);
  403. outline: 0;
  404. box-shadow: var(--input-focus-box-shadow);
  405. }
  406. #form-entries-per-page {
  407. max-width: 80px;
  408. }
  409. input[type="checkbox"] {
  410. margin-bottom: 15px;
  411. }
  412. textarea {
  413. width: 350px;
  414. color: var(--input-color);
  415. background: var(--input-background);
  416. border: var(--input-border);
  417. padding: 3px;
  418. margin-bottom: 10px;
  419. margin-top: 5px;
  420. appearance: none;
  421. }
  422. textarea:focus {
  423. color: var(--input-focus-color);
  424. border-color: var(--input-focus-border-color);
  425. outline: 0;
  426. box-shadow: var(--input-focus-box-shadow);
  427. }
  428. input::placeholder {
  429. color: var(--input-placeholder-color);
  430. padding-top: 2px;
  431. }
  432. .form-label-row {
  433. display: flex;
  434. }
  435. .form-help {
  436. font-size: 0.9em;
  437. color: brown;
  438. margin-bottom: 15px;
  439. }
  440. .form-section {
  441. border-left: 2px dotted #ddd;
  442. padding-left: 20px;
  443. margin-left: 10px;
  444. }
  445. details > summary {
  446. outline: none;
  447. cursor: pointer;
  448. }
  449. .details-content {
  450. margin-top: 15px;
  451. }
  452. /* Buttons */
  453. a.button {
  454. text-decoration: none;
  455. }
  456. .button {
  457. display: inline-block;
  458. appearance: none;
  459. font-size: 1.1em;
  460. cursor: pointer;
  461. padding: 3px 10px;
  462. border: 1px solid;
  463. border-radius: unset;
  464. }
  465. .button-primary {
  466. border-color: var(--button-primary-border-color);
  467. background: var(--button-primary-background);
  468. color: var(--button-primary-color);
  469. }
  470. a.button-primary:hover,
  471. a.button-primary:focus,
  472. .button-primary:hover,
  473. .button-primary:focus {
  474. border-color: var(--button-primary-focus-border-color);
  475. background: var(--button-primary-focus-background);
  476. color: var(--button-primary-color);
  477. }
  478. .button-danger {
  479. border-color: #b0281a;
  480. background: #d14836;
  481. color: #fff;
  482. }
  483. .button-danger:hover,
  484. .button-danger:focus {
  485. color: #fff;
  486. background: #c53727;
  487. }
  488. .button:disabled {
  489. color: #ccc;
  490. background: #f7f7f7;
  491. border-color: #ccc;
  492. }
  493. .buttons {
  494. margin-top: 10px;
  495. margin-bottom: 20px;
  496. }
  497. fieldset .buttons {
  498. margin-bottom: 0;
  499. }
  500. /* Alerts */
  501. .alert {
  502. padding: 8px 35px 8px 14px;
  503. margin-bottom: 20px;
  504. color: var(--alert-color);
  505. background-color: var(--alert-background-color);
  506. border: 1px solid var(--alert-border-color);
  507. border-radius: 4px;
  508. overflow: auto;
  509. }
  510. .alert h3 {
  511. margin-top: 0;
  512. margin-bottom: 15px;
  513. }
  514. .alert-success {
  515. color: var(--alert-success-color);
  516. background-color: var(--alert-success-background-color);
  517. border-color: var(--alert-success-border-color);
  518. }
  519. .alert-error {
  520. color: var(--alert-error-color);
  521. background-color: var(--alert-error-background-color);
  522. border-color: var(--alert-error-border-color);
  523. }
  524. .alert-error h3,
  525. .alert-error a {
  526. color: var(--alert-error-color);
  527. }
  528. .alert-info {
  529. color: var(--alert-info-color);
  530. background-color: var(--alert-info-background-color);
  531. border-color: var(--alert-info-border-color);
  532. }
  533. /* Panel */
  534. .panel {
  535. color: var(--panel-color);
  536. background-color: var(--panel-background);
  537. border: 1px solid var(--panel-border-color);
  538. border-radius: 5px;
  539. padding: 10px;
  540. margin-bottom: 15px;
  541. }
  542. .panel h3 {
  543. font-weight: 500;
  544. margin-top: 0;
  545. margin-bottom: 20px;
  546. }
  547. .panel ul {
  548. margin-left: 30px;
  549. }
  550. /* Modals */
  551. template {
  552. display: none;
  553. }
  554. #modal-left {
  555. position: fixed;
  556. top: 0;
  557. left: 0;
  558. bottom: 0;
  559. width: 380px;
  560. overflow: auto;
  561. color: var(--modal-color);
  562. background: var(--modal-background);
  563. box-shadow: var(--modal-box-shadow);
  564. padding: 5px;
  565. padding-top: 30px;
  566. }
  567. #modal-left h3 {
  568. font-weight: 400;
  569. margin: 0;
  570. }
  571. .btn-close-modal {
  572. position: absolute;
  573. top: 0;
  574. right: 0;
  575. font-size: 1.7em;
  576. color: #ccc;
  577. padding:0 .2em;
  578. margin: 10px;
  579. text-decoration: none;
  580. background-color: transparent;
  581. border: none;
  582. }
  583. .btn-close-modal:hover {
  584. color: #999;
  585. }
  586. /* Keyboard Shortcuts */
  587. .keyboard-shortcuts li {
  588. margin-left: 25px;
  589. list-style-type: square;
  590. color: var(--keyboard-shortcuts-li-color);
  591. font-size: 0.95em;
  592. line-height: 1.45em;
  593. }
  594. .keyboard-shortcuts p {
  595. line-height: 1.9em;
  596. }
  597. /* Login form */
  598. .login-form {
  599. margin: 50px auto 0;
  600. max-width: 300px;
  601. }
  602. /* Counters */
  603. .unread-counter-wrapper,
  604. .error-feeds-counter-wrapper {
  605. font-size: 0.9em;
  606. font-weight: 300;
  607. color: var(--counter-color);
  608. }
  609. /* Category label */
  610. .category {
  611. font-size: 0.75em;
  612. background-color: var(--category-background-color);
  613. border: 1px solid var(--category-border-color);
  614. border-radius: 5px;
  615. margin-left: 0.25em;
  616. padding: 1px 0.4em 1px 0.4em;
  617. white-space: nowrap;
  618. color: var(--category-color);
  619. }
  620. .category a {
  621. color: var(--category-link-color);
  622. text-decoration: none;
  623. }
  624. .category a:hover,
  625. .category a:focus {
  626. color: var(--category-link-hover-color);
  627. }
  628. /* Pagination */
  629. .pagination {
  630. font-size: 1.1em;
  631. display: flex;
  632. align-items: center;
  633. }
  634. .pagination-top {
  635. padding-bottom: 8px;
  636. }
  637. .pagination-bottom {
  638. padding-top: 8px;
  639. }
  640. .pagination-entry-top {
  641. padding-top: 8px;
  642. }
  643. .pagination-entry-bottom {
  644. border-top: 1px dotted var(--pagination-border-color);
  645. margin-bottom: 15px;
  646. margin-top: 50px;
  647. padding-top: 8px;
  648. }
  649. .pagination > div {
  650. flex: 1;
  651. }
  652. .pagination-next {
  653. text-align: right;
  654. }
  655. .pagination-prev:before {
  656. content: "« ";
  657. }
  658. .pagination-next:after {
  659. content: " »";
  660. }
  661. .pagination a {
  662. color: var(--pagination-link-color);
  663. }
  664. .pagination a:hover,
  665. .pagination a:focus {
  666. text-decoration: none;
  667. }
  668. /* List view */
  669. .item {
  670. border: 1px dotted var(--item-border-color);
  671. margin-bottom: 20px;
  672. padding: var(--item-padding);
  673. overflow: hidden;
  674. }
  675. .item.current-item {
  676. border: var(--current-item-border-width) solid var(--current-item-border-color);
  677. padding: 3px;
  678. box-shadow: var(--current-item-box-shadow);
  679. }
  680. .item-header {
  681. font-size: 1rem;
  682. }
  683. .item-header span {
  684. font-weight: normal;
  685. }
  686. .item-title {
  687. font-size: 1rem;
  688. margin: 0;
  689. display: inline;
  690. }
  691. .item-title a {
  692. text-decoration: none;
  693. font-weight: var(--item-title-link-font-weight);
  694. font-size: inherit;
  695. }
  696. .feed-entries-counter {
  697. display: inline-flex;
  698. gap: 2px;
  699. align-items: center;
  700. }
  701. .item-status-read .item-title a {
  702. color: var(--item-status-read-title-link-color);
  703. }
  704. .item-meta {
  705. color: var(--item-meta-focus-color);
  706. font-size: 0.8em;
  707. }
  708. .item-meta a {
  709. color: #777;
  710. text-decoration: none;
  711. }
  712. .item-meta a:hover,
  713. .item-meta a:focus {
  714. color: #333;
  715. }
  716. .item-meta ul {
  717. margin-top: 5px;
  718. }
  719. .item-meta li {
  720. display: inline-block;
  721. }
  722. .item-meta-info {
  723. font-size: 0.85em;
  724. }
  725. .item-meta-info li:not(:last-child):after {
  726. content: "|";
  727. color: var(--item-meta-li-color);
  728. }
  729. .item-meta-icons li {
  730. margin-right: 8px;
  731. margin-top: 4px;
  732. }
  733. .item-meta-icons li:last-child {
  734. margin-right: 0;
  735. }
  736. .items {
  737. overflow-x: hidden;
  738. touch-action: pan-y;
  739. }
  740. .hide-read-items .item-status-read:not(.current-item) {
  741. display: none;
  742. }
  743. .entry-swipe {
  744. transition-property: transform;
  745. transition-duration: 0s;
  746. transition-timing-function: ease-out;
  747. }
  748. /* Feeds list */
  749. article.feed-parsing-error {
  750. background-color: var(--feed-parsing-error-background-color);
  751. border-style: var(--feed-parsing-error-border-style);
  752. border-color: var(--feed-parsing-error-border-color);
  753. }
  754. article.feed-has-unread {
  755. background-color: var(--feed-has-unread-background-color);
  756. border-style: var(--feed-has-unread-border-style);
  757. border-color: var(--feed-has-unread-border-color);
  758. }
  759. .parsing-error {
  760. font-size: 0.85em;
  761. margin-top: 2px;
  762. color: var(--parsing-error-color);
  763. }
  764. .parsing-error-count {
  765. cursor: pointer;
  766. }
  767. /* Categories list */
  768. article.category-has-unread {
  769. background-color: var(--category-has-unread-background-color);
  770. border-style: var(--category-has-unread-border-style);
  771. border-color: var(--category-has-unread-border-color);
  772. }
  773. /* Icons */
  774. .icon,
  775. .icon-label {
  776. vertical-align: middle;
  777. display: inline-block;
  778. padding-right: 2px;
  779. }
  780. .icon {
  781. width: 16px;
  782. height: 16px;
  783. }
  784. /* Entry view */
  785. .entry header {
  786. padding-bottom: 5px;
  787. padding-inline: 5px;
  788. border-bottom: 1px dotted var(--entry-header-border-color);
  789. }
  790. .entry header h1 {
  791. font-size: 2.0em;
  792. line-height: 1.25em;
  793. margin: 5px 0 30px 0;
  794. overflow-wrap: break-word;
  795. }
  796. .entry header h1 a {
  797. text-decoration: none;
  798. color: var(--entry-header-title-link-color);
  799. }
  800. .entry header h1 a:hover,
  801. .entry header h1 a:focus {
  802. color: #666;
  803. }
  804. .entry-actions {
  805. margin-bottom: 20px;
  806. }
  807. .entry-actions a {
  808. text-decoration: none;
  809. }
  810. .entry-actions li {
  811. display: inline-block;
  812. margin-right: 15px;
  813. line-height: 1.7em;
  814. }
  815. .entry-meta {
  816. font-size: 0.95em;
  817. margin: 0 0 20px;
  818. color: #666;
  819. overflow-wrap: break-word;
  820. }
  821. .entry-tags {
  822. margin-top: 20px;
  823. margin-bottom: 20px;
  824. }
  825. .entry-tags strong {
  826. font-weight: 600;
  827. }
  828. .entry-website img {
  829. vertical-align: top;
  830. }
  831. .entry-website a {
  832. color: #666;
  833. vertical-align: top;
  834. text-decoration: none;
  835. }
  836. .entry-website a:hover,
  837. .entry-website a:focus {
  838. text-decoration: underline;
  839. }
  840. .entry-date {
  841. font-size: 0.65em;
  842. font-style: italic;
  843. color: #555;
  844. }
  845. .entry-content {
  846. padding-top: 15px;
  847. font-size: 1.2em;
  848. font-weight: var(--entry-content-font-weight);
  849. font-family: var(--entry-content-font-family);
  850. color: var(--entry-content-color);
  851. line-height: 1.4em;
  852. overflow-wrap: break-word;
  853. touch-action: pan-y pinch-zoom;
  854. }
  855. .entry-content h1, h2, h3, h4, h5, h6 {
  856. margin-top: 15px;
  857. margin-bottom: 10px;
  858. }
  859. .entry-content iframe,
  860. .entry-content video,
  861. .entry-content img {
  862. max-width: 100%;
  863. }
  864. .entry-content figure {
  865. margin-top: 15px;
  866. margin-bottom: 15px;
  867. }
  868. .entry-content figure img {
  869. border: 1px solid #000;
  870. }
  871. .entry-content figcaption {
  872. font-size: 0.75em;
  873. text-transform: uppercase;
  874. color: #777;
  875. }
  876. .entry-content p {
  877. margin-top: 10px;
  878. margin-bottom: 15px;
  879. }
  880. .entry-content a {
  881. overflow-wrap: break-word;
  882. }
  883. .entry-content a:visited {
  884. color: var(--link-visited-color);
  885. }
  886. .entry-content dt {
  887. font-weight: 500;
  888. margin-top: 15px;
  889. color: #555;
  890. }
  891. .entry-content dd {
  892. margin-left: 15px;
  893. margin-top: 5px;
  894. padding-left: 20px;
  895. border-left: 3px solid #ddd;
  896. color: #777;
  897. font-weight: 300;
  898. line-height: 1.4em;
  899. }
  900. .entry-content blockquote {
  901. border-left: 4px solid #ddd;
  902. padding-left: 25px;
  903. margin-left: 20px;
  904. margin-top: 20px;
  905. margin-bottom: 20px;
  906. line-height: 1.4em;
  907. font-family: var(--entry-content-quote-font-family);
  908. }
  909. .entry-content q {
  910. color: var(--entry-content-quote-color);
  911. font-family: var(--entry-content-quote-font-family);
  912. font-style: italic;
  913. }
  914. .entry-content q:before {
  915. content: "“";
  916. }
  917. .entry-content q:after {
  918. content: "”";
  919. }
  920. .entry-content pre {
  921. padding: 5px;
  922. overflow: auto;
  923. overflow-wrap: initial;
  924. border-width: 1px;
  925. border-style: solid;
  926. }
  927. .entry-content pre,
  928. .entry-content code {
  929. color: var(--entry-content-code-color);
  930. background: var(--entry-content-code-background);
  931. border-color: var(--entry-content-code-border-color);
  932. }
  933. .entry-content table {
  934. max-width: 100%;
  935. }
  936. .entry-content ul,
  937. .entry-content ol {
  938. margin-left: 30px;
  939. margin-top: 15px;
  940. margin-bottom: 15px;
  941. }
  942. .entry-content li ul,
  943. .entry-content li ol {
  944. margin-top: 0;
  945. margin-bottom: 0;
  946. }
  947. .entry-content ul {
  948. list-style-type: square;
  949. }
  950. .entry-content strong {
  951. font-weight: 600;
  952. }
  953. .entry-content sub,
  954. .entry-content sup {
  955. font-size: 75%;
  956. line-height: 0;
  957. position: relative;
  958. vertical-align: baseline;
  959. }
  960. .entry-content sub {
  961. bottom: -0.25em;
  962. }
  963. .entry-content sup {
  964. top: -0.5em;
  965. }
  966. .entry-content abbr {
  967. cursor: pointer;
  968. text-decoration: none;
  969. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  970. }
  971. details.entry-enclosures {
  972. margin-top: 25px;
  973. }
  974. .entry-enclosures summary {
  975. font-weight: 500;
  976. font-size: 1.2em;
  977. }
  978. .entry-enclosure {
  979. border: 1px dotted var(--entry-enclosure-border-color);
  980. padding: 5px;
  981. margin-top: 10px;
  982. max-width: 100%;
  983. }
  984. .entry-enclosure-download {
  985. font-size: 0.85em;
  986. overflow-wrap: break-word;
  987. }
  988. .enclosure-video video,
  989. .enclosure-image img {
  990. max-width: 100%;
  991. }
  992. /* Confirmation */
  993. .confirm {
  994. font-weight: 500;
  995. color: #ed2d04;
  996. }
  997. .confirm a {
  998. color: #ed2d04;
  999. }
  1000. .loading {
  1001. font-style: italic;
  1002. }
  1003. /* Bookmarlet */
  1004. .bookmarklet {
  1005. border: 1px dashed #ccc;
  1006. border-radius: 5px;
  1007. padding: 15px;
  1008. margin: 15px;
  1009. text-align: center;
  1010. }
  1011. .bookmarklet a {
  1012. font-weight: 600;
  1013. text-decoration: none;
  1014. font-size: 1.2em;
  1015. }
  1016. .disabled {
  1017. opacity: 20%;
  1018. }
  1019. audio, video {
  1020. width: 100%;
  1021. }
  1022. .integration-form summary {
  1023. font-weight: 700;
  1024. }
  1025. .integration-form details {
  1026. margin-bottom: 15px;
  1027. }
  1028. .integration-form details .form-section {
  1029. margin-top: 15px;
  1030. }
  1031. .hidden {
  1032. display: none;
  1033. }