common.css 18 KB

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