common.css 22 KB

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