common.css 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258
  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 :is(a, summary) {
  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:focus {
  127. color: var(--header-link-focus-color);
  128. }
  129. /* Page header and footer*/
  130. .page-header {
  131. padding-inline: 5px;
  132. margin-bottom: 25px;
  133. }
  134. .page-footer {
  135. margin-bottom: 10px;
  136. }
  137. .page-header h1 {
  138. font-weight: 500;
  139. border-bottom: 1px dotted var(--page-header-title-border-color);
  140. font-size: 1.5rem;
  141. }
  142. .page-header h1 a {
  143. text-decoration: none;
  144. color: var(--page-header-title-color);
  145. }
  146. .page-header h1 a:hover,
  147. .page-header h1 a:focus {
  148. color: #666;
  149. }
  150. .page-header li,
  151. .page-footer li {
  152. list-style-type: none;
  153. line-height: 1.8em;
  154. white-space: nowrap;
  155. }
  156. .page-header ul a .icon {
  157. padding-bottom: 2px;
  158. }
  159. /* Logo */
  160. .logo {
  161. text-align: center;
  162. display: flex;
  163. justify-content: center;
  164. }
  165. .logo a {
  166. color: var(--logo-color);
  167. letter-spacing: 1px;
  168. display: flex;
  169. align-items: center;
  170. }
  171. .logo a:hover {
  172. color: #339966;
  173. }
  174. .logo a span {
  175. color: #339966;
  176. }
  177. .logo a:hover span {
  178. color: var(--logo-hover-color-span);
  179. }
  180. /* Search form */
  181. .search {
  182. text-align: center;
  183. margin-top: 10px;
  184. margin-right: 5px;
  185. }
  186. .search details svg {
  187. padding: 5px;
  188. inline-size: 24px;
  189. block-size: 24px;
  190. translate: 0 -3px;
  191. }
  192. .search details[open] svg {
  193. rotate: 180deg;
  194. }
  195. .search details > summary {
  196. list-style: none;
  197. display: flex;
  198. justify-content: center;
  199. inline-size: fit-content;
  200. margin-inline: auto;
  201. }
  202. .search details > summary::marker, /* Latest Chrome, Edge, Firefox */
  203. .search details > summary::-webkit-details-marker /* Safari */ {
  204. display: none;
  205. }
  206. .search-toggle-switch {
  207. display: none;
  208. }
  209. /* PWA prompt */
  210. #prompt-home-screen {
  211. display: none;
  212. position: fixed;
  213. bottom: 0;
  214. right: 0;
  215. width: 100%;
  216. text-align: center;
  217. background: #000;
  218. opacity: 85%;
  219. }
  220. #btn-add-to-home-screen {
  221. text-decoration: none;
  222. line-height: 30px;
  223. color: #fff;
  224. }
  225. #btn-add-to-home-screen:hover {
  226. color: red;
  227. }
  228. /* Notification - "Toast" */
  229. #toast-wrapper {
  230. visibility: hidden;
  231. opacity: 0;
  232. position: fixed;
  233. left: 0;
  234. bottom: 10%;
  235. color: #fff;
  236. width: 100%;
  237. text-align: center;
  238. }
  239. #toast-msg {
  240. background-color: rgba(0,0,0,0.7);
  241. padding-bottom: 4px;
  242. padding-left: 4px;
  243. padding-right: 5px;
  244. border-radius: 5px;
  245. }
  246. .toast-animate {
  247. animation: toastKeyFrames 2s;
  248. }
  249. @keyframes toastKeyFrames {
  250. 0% {visibility: hidden; opacity: 0;}
  251. 25% {visibility: visible; opacity: 1; z-index: 9999}
  252. 50% {visibility: visible; opacity: 1; z-index: 9999}
  253. 75% {visibility: visible; opacity: 1; z-index: 9999}
  254. 100% {visibility: hidden; opacity: 0; z-index: 0}
  255. }
  256. @media (min-width: 620px) {
  257. body {
  258. margin: auto;
  259. max-width: 750px;
  260. }
  261. .header {
  262. margin-bottom: 0;
  263. }
  264. .logo {
  265. text-align: left;
  266. float: left;
  267. margin-right: 15px;
  268. margin-left: 5px;
  269. }
  270. .header li {
  271. display: inline;
  272. padding: 0;
  273. padding-right: 15px;
  274. line-height: normal;
  275. border: none;
  276. font-size: 1.0em;
  277. }
  278. .header nav {
  279. align-items: end;
  280. flex-direction: row;
  281. }
  282. .header nav button[aria-controls="header-menu"] {
  283. display: none;
  284. }
  285. .header nav button[aria-controls="header-menu"] svg {
  286. rotate: -90deg;
  287. }
  288. .header nav button[aria-controls="header-menu"][aria-expanded="true"] svg {
  289. rotate: 90deg;
  290. }
  291. .header ul:not(.js-menu-show), .header ul.js-menu-show {
  292. display: revert;
  293. }
  294. .header :is(a, summary):hover {
  295. color: var(--header-link-hover-color);
  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. .category-item-total {
  629. color: var(--body-color);
  630. }
  631. /* Pagination */
  632. .pagination {
  633. font-size: 1.1em;
  634. display: flex;
  635. align-items: center;
  636. }
  637. .pagination-top {
  638. padding-bottom: 8px;
  639. }
  640. .pagination-bottom {
  641. padding-top: 8px;
  642. }
  643. .pagination-entry-top {
  644. padding-top: 8px;
  645. }
  646. .pagination-entry-bottom {
  647. border-top: 1px dotted var(--pagination-border-color);
  648. margin-bottom: 15px;
  649. margin-top: 50px;
  650. padding-top: 8px;
  651. }
  652. .pagination > div {
  653. flex: 1;
  654. }
  655. .pagination-next {
  656. text-align: right;
  657. }
  658. .pagination-prev:before {
  659. content: "« ";
  660. }
  661. .pagination-next:after {
  662. content: " »";
  663. }
  664. .pagination a {
  665. color: var(--pagination-link-color);
  666. }
  667. .pagination a:hover,
  668. .pagination a:focus {
  669. text-decoration: none;
  670. }
  671. /* List view */
  672. .item {
  673. border: 1px dotted var(--item-border-color);
  674. margin-bottom: 20px;
  675. padding: var(--item-padding);
  676. overflow: hidden;
  677. }
  678. .item.current-item {
  679. border: var(--current-item-border-width) solid var(--current-item-border-color);
  680. padding: 3px;
  681. box-shadow: var(--current-item-box-shadow);
  682. }
  683. .item-header {
  684. font-size: 1rem;
  685. }
  686. .item-header span {
  687. font-weight: normal;
  688. display: inline-block;
  689. }
  690. .item-title {
  691. font-size: 1rem;
  692. margin: 0;
  693. display: inline;
  694. }
  695. .item-title a {
  696. text-decoration: none;
  697. font-weight: var(--item-title-link-font-weight);
  698. font-size: inherit;
  699. }
  700. .feed-entries-counter {
  701. display: inline-flex;
  702. gap: 2px;
  703. align-items: center;
  704. }
  705. .item-status-read .item-title a {
  706. color: var(--item-status-read-title-link-color);
  707. }
  708. .item-meta {
  709. color: var(--item-meta-focus-color);
  710. font-size: 0.8em;
  711. }
  712. .item-meta a {
  713. color: #777;
  714. text-decoration: none;
  715. }
  716. .item-meta a:hover,
  717. .item-meta a:focus {
  718. color: #333;
  719. }
  720. .item-meta ul {
  721. margin-top: 5px;
  722. }
  723. .item-meta li {
  724. display: inline-block;
  725. }
  726. .item-meta-info {
  727. font-size: 0.85em;
  728. }
  729. .item-meta-info li:not(:last-child):after {
  730. content: "|";
  731. color: var(--item-meta-li-color);
  732. }
  733. .item-meta-icons li {
  734. margin-right: 8px;
  735. margin-top: 4px;
  736. }
  737. .item-meta-icons li:last-child {
  738. margin-right: 0;
  739. }
  740. .items {
  741. overflow-x: hidden;
  742. touch-action: pan-y;
  743. }
  744. .hide-read-items .item-status-read:not(.current-item) {
  745. display: none;
  746. }
  747. .entry-swipe {
  748. transition-property: transform;
  749. transition-duration: 0s;
  750. transition-timing-function: ease-out;
  751. }
  752. /* Feeds list */
  753. article.feed-parsing-error {
  754. background-color: var(--feed-parsing-error-background-color);
  755. border-style: var(--feed-parsing-error-border-style);
  756. border-color: var(--feed-parsing-error-border-color);
  757. }
  758. article.feed-has-unread {
  759. background-color: var(--feed-has-unread-background-color);
  760. border-style: var(--feed-has-unread-border-style);
  761. border-color: var(--feed-has-unread-border-color);
  762. }
  763. .parsing-error {
  764. font-size: 0.85em;
  765. margin-top: 2px;
  766. color: var(--parsing-error-color);
  767. }
  768. .parsing-error-count {
  769. cursor: pointer;
  770. }
  771. /* Categories list */
  772. article.category-has-unread {
  773. background-color: var(--category-has-unread-background-color);
  774. border-style: var(--category-has-unread-border-style);
  775. border-color: var(--category-has-unread-border-color);
  776. }
  777. /* Icons */
  778. .icon,
  779. .icon-label {
  780. vertical-align: middle;
  781. display: inline-block;
  782. padding-right: 2px;
  783. }
  784. .icon {
  785. width: 16px;
  786. height: 16px;
  787. }
  788. /* Entry view */
  789. .entry header {
  790. padding-bottom: 5px;
  791. padding-inline: 5px;
  792. border-bottom: 1px dotted var(--entry-header-border-color);
  793. }
  794. .entry header h1 {
  795. font-size: 2.0em;
  796. line-height: 1.25em;
  797. margin: 5px 0 30px 0;
  798. overflow-wrap: break-word;
  799. }
  800. .entry header h1 a {
  801. text-decoration: none;
  802. color: var(--entry-header-title-link-color);
  803. }
  804. .entry header h1 a:hover,
  805. .entry header h1 a:focus {
  806. color: #666;
  807. }
  808. .entry-actions {
  809. margin-bottom: 20px;
  810. }
  811. .entry-actions a {
  812. text-decoration: none;
  813. }
  814. .entry-actions li {
  815. display: inline-block;
  816. margin-right: 15px;
  817. line-height: 1.7em;
  818. }
  819. .entry-meta {
  820. font-size: 0.95em;
  821. margin: 0 0 20px;
  822. color: #666;
  823. overflow-wrap: break-word;
  824. }
  825. .entry-tags {
  826. margin-top: 20px;
  827. margin-bottom: 20px;
  828. }
  829. .entry-tags strong {
  830. font-weight: 600;
  831. }
  832. .entry-website img {
  833. vertical-align: top;
  834. }
  835. .entry-website a {
  836. color: #666;
  837. vertical-align: top;
  838. text-decoration: none;
  839. }
  840. .entry-website a:hover,
  841. .entry-website a:focus {
  842. text-decoration: underline;
  843. }
  844. .entry-date {
  845. font-size: 0.65em;
  846. font-style: italic;
  847. color: #555;
  848. }
  849. .entry-content {
  850. padding-top: 15px;
  851. font-size: 1.2em;
  852. font-weight: var(--entry-content-font-weight);
  853. font-family: var(--entry-content-font-family);
  854. color: var(--entry-content-color);
  855. line-height: 1.4em;
  856. overflow-wrap: break-word;
  857. touch-action: pan-y pinch-zoom;
  858. }
  859. .entry-content h1, h2, h3, h4, h5, h6 {
  860. margin-top: 15px;
  861. margin-bottom: 10px;
  862. }
  863. .entry-content iframe,
  864. .entry-content video,
  865. .entry-content img {
  866. max-width: 100%;
  867. }
  868. .entry-content figure {
  869. margin-top: 15px;
  870. margin-bottom: 15px;
  871. }
  872. .entry-content figure img {
  873. border: 1px solid #000;
  874. }
  875. .entry-content figcaption {
  876. font-size: 0.75em;
  877. text-transform: uppercase;
  878. color: #777;
  879. }
  880. .entry-content p {
  881. margin-top: 10px;
  882. margin-bottom: 15px;
  883. }
  884. .entry-content a {
  885. overflow-wrap: break-word;
  886. }
  887. .entry-content a:visited {
  888. color: var(--link-visited-color);
  889. }
  890. .entry-content dt {
  891. font-weight: 500;
  892. margin-top: 15px;
  893. color: #555;
  894. }
  895. .entry-content dd {
  896. margin-left: 15px;
  897. margin-top: 5px;
  898. padding-left: 20px;
  899. border-left: 3px solid #ddd;
  900. color: #777;
  901. font-weight: 300;
  902. line-height: 1.4em;
  903. }
  904. .entry-content blockquote {
  905. border-left: 4px solid #ddd;
  906. padding-left: 25px;
  907. margin-left: 20px;
  908. margin-top: 20px;
  909. margin-bottom: 20px;
  910. line-height: 1.4em;
  911. font-family: var(--entry-content-quote-font-family);
  912. }
  913. .entry-content q {
  914. color: var(--entry-content-quote-color);
  915. font-family: var(--entry-content-quote-font-family);
  916. font-style: italic;
  917. }
  918. .entry-content q:before {
  919. content: "“";
  920. }
  921. .entry-content q:after {
  922. content: "”";
  923. }
  924. .entry-content pre {
  925. padding: 5px;
  926. overflow: auto;
  927. overflow-wrap: initial;
  928. border-width: 1px;
  929. border-style: solid;
  930. }
  931. .entry-content pre,
  932. .entry-content code {
  933. color: var(--entry-content-code-color);
  934. background: var(--entry-content-code-background);
  935. border-color: var(--entry-content-code-border-color);
  936. }
  937. .entry-content table {
  938. max-width: 100%;
  939. }
  940. .entry-content ul,
  941. .entry-content ol {
  942. margin-left: 30px;
  943. margin-top: 15px;
  944. margin-bottom: 15px;
  945. }
  946. .entry-content li ul,
  947. .entry-content li ol {
  948. margin-top: 0;
  949. margin-bottom: 0;
  950. }
  951. .entry-content ul {
  952. list-style-type: square;
  953. }
  954. .entry-content strong {
  955. font-weight: 600;
  956. }
  957. .entry-content sub,
  958. .entry-content sup {
  959. font-size: 75%;
  960. line-height: 0;
  961. position: relative;
  962. vertical-align: baseline;
  963. }
  964. .entry-content sub {
  965. bottom: -0.25em;
  966. }
  967. .entry-content sup {
  968. top: -0.5em;
  969. }
  970. .entry-content abbr {
  971. cursor: pointer;
  972. text-decoration: none;
  973. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  974. }
  975. details.entry-enclosures {
  976. margin-top: 25px;
  977. }
  978. .entry-enclosures summary {
  979. font-weight: 500;
  980. font-size: 1.2em;
  981. }
  982. .entry-enclosure {
  983. border: 1px dotted var(--entry-enclosure-border-color);
  984. padding: 5px;
  985. margin-top: 10px;
  986. max-width: 100%;
  987. }
  988. .entry-enclosure-download {
  989. font-size: 0.85em;
  990. overflow-wrap: break-word;
  991. }
  992. .enclosure-video video,
  993. .enclosure-image img {
  994. max-width: 100%;
  995. }
  996. /* Confirmation */
  997. .confirm {
  998. font-weight: 500;
  999. color: #ed2d04;
  1000. }
  1001. .confirm a {
  1002. color: #ed2d04;
  1003. }
  1004. .loading {
  1005. font-style: italic;
  1006. }
  1007. /* Bookmarlet */
  1008. .bookmarklet {
  1009. border: 1px dashed #ccc;
  1010. border-radius: 5px;
  1011. padding: 15px;
  1012. margin: 15px;
  1013. text-align: center;
  1014. }
  1015. .bookmarklet a {
  1016. font-weight: 600;
  1017. text-decoration: none;
  1018. font-size: 1.2em;
  1019. }
  1020. .disabled {
  1021. opacity: 20%;
  1022. }
  1023. audio, video {
  1024. width: 100%;
  1025. }
  1026. .integration-form summary {
  1027. font-weight: 700;
  1028. }
  1029. .integration-form details {
  1030. margin-bottom: 15px;
  1031. }
  1032. .integration-form details .form-section {
  1033. margin-top: 15px;
  1034. }
  1035. .hidden {
  1036. display: none;
  1037. }