common.css 21 KB

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