common.css 20 KB

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