common.css 22 KB

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