common.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110
  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: 620px) {
  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. background-color: transparent;
  486. border: none;
  487. }
  488. .btn-close-modal:hover {
  489. color: #999;
  490. }
  491. /* Keyboard Shortcuts */
  492. .keyboard-shortcuts li {
  493. margin-left: 25px;
  494. list-style-type: square;
  495. color: var(--keyboard-shortcuts-li-color);
  496. font-size: 0.95em;
  497. line-height: 1.45em;
  498. }
  499. .keyboard-shortcuts p {
  500. line-height: 1.9em;
  501. }
  502. /* Login form */
  503. .login-form {
  504. margin: 50px auto 0;
  505. max-width: 280px;
  506. }
  507. /* Counters */
  508. .unread-counter-wrapper,
  509. .error-feeds-counter-wrapper {
  510. font-size: 0.9em;
  511. font-weight: 300;
  512. color: var(--counter-color);
  513. }
  514. /* Category label */
  515. .category {
  516. font-size: 0.75em;
  517. background-color: var(--category-background-color);
  518. border: 1px solid var(--category-border-color);
  519. border-radius: 5px;
  520. margin-left: 0.25em;
  521. padding: 1px 0.4em 1px 0.4em;
  522. white-space: nowrap;
  523. color: var(--category-color);
  524. }
  525. .category a {
  526. color: var(--category-link-color);
  527. text-decoration: none;
  528. }
  529. .category a:hover,
  530. .category a:focus {
  531. color: var(--category-link-hover-color);
  532. }
  533. /* Pagination */
  534. .pagination {
  535. font-size: 1.1em;
  536. display: flex;
  537. align-items: center;
  538. }
  539. .pagination-top {
  540. padding-bottom: 8px;
  541. }
  542. .pagination-bottom {
  543. padding-top: 8px;
  544. }
  545. .pagination-entry-top {
  546. padding-top: 8px;
  547. }
  548. .pagination-entry-bottom {
  549. border-top: 1px dotted var(--pagination-border-color);
  550. margin-bottom: 15px;
  551. margin-top: 50px;
  552. padding-top: 8px;
  553. }
  554. .pagination > div {
  555. flex: 1;
  556. }
  557. .pagination-next {
  558. text-align: right;
  559. }
  560. .pagination-prev:before {
  561. content: "« ";
  562. }
  563. .pagination-next:after {
  564. content: " »";
  565. }
  566. .pagination a {
  567. color: var(--pagination-link-color);
  568. }
  569. .pagination a:hover,
  570. .pagination a:focus {
  571. text-decoration: none;
  572. }
  573. /* List view */
  574. .item {
  575. border: 1px dotted var(--item-border-color);
  576. margin-bottom: 20px;
  577. padding: var(--item-padding);
  578. overflow: hidden;
  579. }
  580. .item.current-item {
  581. border: var(--current-item-border-width) solid var(--current-item-border-color);
  582. padding: 3px;
  583. box-shadow: var(--current-item-box-shadow);
  584. }
  585. .item-title a {
  586. text-decoration: none;
  587. font-weight: var(--item-title-link-font-weight);
  588. }
  589. .item-status-read .item-title a {
  590. color: var(--item-status-read-title-link-color);
  591. }
  592. .item-meta {
  593. color: var(--item-meta-focus-color);
  594. font-size: 0.8em;
  595. }
  596. .item-meta a {
  597. color: #777;
  598. text-decoration: none;
  599. }
  600. .item-meta a:hover,
  601. .item-meta a:focus {
  602. color: #333;
  603. }
  604. .item-meta ul {
  605. margin-top: 5px;
  606. }
  607. .item-meta li {
  608. display: inline-block;
  609. }
  610. .item-meta-info {
  611. font-size: 0.85em;
  612. }
  613. .item-meta-info li:not(:last-child):after {
  614. content: "|";
  615. color: var(--item-meta-li-color);
  616. }
  617. .item-meta-icons li {
  618. margin-right: 8px;
  619. margin-top: 4px;
  620. }
  621. .item-meta-icons li:last-child {
  622. margin-right: 0;
  623. }
  624. .items {
  625. overflow-x: hidden;
  626. touch-action: pan-y;
  627. }
  628. .hide-read-items .item-status-read:not(.current-item) {
  629. display: none;
  630. }
  631. .entry-swipe {
  632. transition-property: transform;
  633. transition-duration: 0s;
  634. transition-timing-function: ease-out;
  635. }
  636. /* Feeds list */
  637. article.feed-parsing-error {
  638. background-color: var(--feed-parsing-error-background-color);
  639. border-style: var(--feed-parsing-error-border-style);
  640. border-color: var(--feed-parsing-error-border-color);
  641. }
  642. article.feed-has-unread {
  643. background-color: var(--feed-has-unread-background-color);
  644. border-style: var(--feed-has-unread-border-style);
  645. border-color: var(--feed-has-unread-border-color);
  646. }
  647. .parsing-error {
  648. font-size: 0.85em;
  649. margin-top: 2px;
  650. color: var(--parsing-error-color);
  651. }
  652. .parsing-error-count {
  653. cursor: pointer;
  654. }
  655. /* Categories list */
  656. article.category-has-unread {
  657. background-color: var(--category-has-unread-background-color);
  658. border-style: var(--category-has-unread-border-style);
  659. border-color: var(--category-has-unread-border-color);
  660. }
  661. /* Icons */
  662. .icon,
  663. .icon-label {
  664. vertical-align: middle;
  665. display: inline-block;
  666. padding-right: 2px;
  667. }
  668. .icon {
  669. width: 16px;
  670. height: 16px;
  671. }
  672. /* Entry view */
  673. .entry header {
  674. padding-bottom: 5px;
  675. border-bottom: 1px dotted var(--entry-header-border-color);
  676. }
  677. .entry header h1 {
  678. font-size: 2.0em;
  679. line-height: 1.25em;
  680. margin: 5px 0 30px 0;
  681. overflow-wrap: break-word;
  682. }
  683. .entry header h1 a {
  684. text-decoration: none;
  685. color: var(--entry-header-title-link-color);
  686. }
  687. .entry header h1 a:hover,
  688. .entry header h1 a:focus {
  689. color: #666;
  690. }
  691. .entry-actions {
  692. margin-bottom: 20px;
  693. }
  694. .entry-actions a {
  695. text-decoration: none;
  696. }
  697. .entry-actions li {
  698. display: inline-block;
  699. margin-right: 15px;
  700. line-height: 1.7em;
  701. }
  702. .entry-meta {
  703. font-size: 0.95em;
  704. margin: 0 0 20px;
  705. color: #666;
  706. overflow-wrap: break-word;
  707. }
  708. .entry-tags {
  709. margin-top: 20px;
  710. margin-bottom: 20px;
  711. }
  712. .entry-tags strong {
  713. font-weight: 600;
  714. }
  715. .entry-website img {
  716. vertical-align: top;
  717. }
  718. .entry-website a {
  719. color: #666;
  720. vertical-align: top;
  721. text-decoration: none;
  722. }
  723. .entry-website a:hover,
  724. .entry-website a:focus {
  725. text-decoration: underline;
  726. }
  727. .entry-date {
  728. font-size: 0.65em;
  729. font-style: italic;
  730. color: #555;
  731. }
  732. .entry-content {
  733. padding-top: 15px;
  734. font-size: 1.2em;
  735. font-weight: var(--entry-content-font-weight);
  736. font-family: var(--entry-content-font-family);
  737. color: var(--entry-content-color);
  738. line-height: 1.4em;
  739. overflow-wrap: break-word;
  740. touch-action: pan-y pinch-zoom;
  741. }
  742. .entry-content h1, h2, h3, h4, h5, h6 {
  743. margin-top: 15px;
  744. margin-bottom: 10px;
  745. }
  746. .entry-content iframe,
  747. .entry-content video,
  748. .entry-content img {
  749. max-width: 100%;
  750. }
  751. .entry-content figure {
  752. margin-top: 15px;
  753. margin-bottom: 15px;
  754. }
  755. .entry-content figure img {
  756. border: 1px solid #000;
  757. }
  758. .entry-content figcaption {
  759. font-size: 0.75em;
  760. text-transform: uppercase;
  761. color: #777;
  762. }
  763. .entry-content p {
  764. margin-top: 10px;
  765. margin-bottom: 15px;
  766. }
  767. .entry-content a {
  768. overflow-wrap: break-word;
  769. }
  770. .entry-content a:visited {
  771. color: var(--link-visited-color);
  772. }
  773. .entry-content dt {
  774. font-weight: 500;
  775. margin-top: 15px;
  776. color: #555;
  777. }
  778. .entry-content dd {
  779. margin-left: 15px;
  780. margin-top: 5px;
  781. padding-left: 20px;
  782. border-left: 3px solid #ddd;
  783. color: #777;
  784. font-weight: 300;
  785. line-height: 1.4em;
  786. }
  787. .entry-content blockquote {
  788. border-left: 4px solid #ddd;
  789. padding-left: 25px;
  790. margin-left: 20px;
  791. margin-top: 20px;
  792. margin-bottom: 20px;
  793. line-height: 1.4em;
  794. font-family: var(--entry-content-quote-font-family);
  795. }
  796. .entry-content q {
  797. color: var(--entry-content-quote-color);
  798. font-family: var(--entry-content-quote-font-family);
  799. font-style: italic;
  800. }
  801. .entry-content q:before {
  802. content: "“";
  803. }
  804. .entry-content q:after {
  805. content: "”";
  806. }
  807. .entry-content pre {
  808. padding: 5px;
  809. overflow: auto;
  810. overflow-wrap: initial;
  811. border-width: 1px;
  812. border-style: solid;
  813. }
  814. .entry-content pre,
  815. .entry-content code {
  816. color: var(--entry-content-code-color);
  817. background: var(--entry-content-code-background);
  818. border-color: var(--entry-content-code-border-color);
  819. }
  820. .entry-content table {
  821. max-width: 100%;
  822. }
  823. .entry-content ul,
  824. .entry-content ol {
  825. margin-left: 30px;
  826. margin-top: 15px;
  827. margin-bottom: 15px;
  828. }
  829. .entry-content li ul,
  830. .entry-content li ol {
  831. margin-top: 0;
  832. margin-bottom: 0;
  833. }
  834. .entry-content ul {
  835. list-style-type: square;
  836. }
  837. .entry-content strong {
  838. font-weight: 600;
  839. }
  840. .entry-content sub,
  841. .entry-content sup {
  842. font-size: 75%;
  843. line-height: 0;
  844. position: relative;
  845. vertical-align: baseline;
  846. }
  847. .entry-content sub {
  848. bottom: -0.25em;
  849. }
  850. .entry-content sup {
  851. top: -0.5em;
  852. }
  853. .entry-content abbr {
  854. cursor: pointer;
  855. text-decoration: none;
  856. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  857. }
  858. details.entry-enclosures {
  859. margin-top: 25px;
  860. }
  861. .entry-enclosures summary {
  862. font-weight: 500;
  863. font-size: 1.2em;
  864. }
  865. .entry-enclosure {
  866. border: 1px dotted var(--entry-enclosure-border-color);
  867. padding: 5px;
  868. margin-top: 10px;
  869. max-width: 100%;
  870. }
  871. .entry-enclosure-download {
  872. font-size: 0.85em;
  873. overflow-wrap: break-word;
  874. }
  875. .enclosure-video video,
  876. .enclosure-image img {
  877. max-width: 100%;
  878. }
  879. /* Confirmation */
  880. .confirm {
  881. font-weight: 500;
  882. color: #ed2d04;
  883. }
  884. .confirm a {
  885. color: #ed2d04;
  886. }
  887. .loading {
  888. font-style: italic;
  889. }
  890. /* Bookmarlet */
  891. .bookmarklet {
  892. border: 1px dashed #ccc;
  893. border-radius: 5px;
  894. padding: 15px;
  895. margin: 15px;
  896. text-align: center;
  897. }
  898. .bookmarklet a {
  899. font-weight: 600;
  900. text-decoration: none;
  901. font-size: 1.2em;
  902. }
  903. .disabled {
  904. opacity: 20%;
  905. }
  906. audio, video {
  907. width: 100%;
  908. }
  909. .integration-form summary {
  910. font-weight: 700;
  911. }
  912. .integration-form details {
  913. margin-bottom: 15px;
  914. }
  915. .integration-form details .form-section {
  916. margin-top: 15px;
  917. }