common.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  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 dotted #ddd;
  267. padding: 8px;
  268. margin-bottom: 20px;
  269. }
  270. legend {
  271. font-weight: 500;
  272. padding-left: 3px;
  273. padding-right: 3px;
  274. }
  275. label {
  276. cursor: pointer;
  277. display: block;
  278. }
  279. .radio-group {
  280. line-height: 1.9em;
  281. }
  282. div.radio-group label {
  283. display: inline-block;
  284. }
  285. select {
  286. margin-bottom: 15px;
  287. }
  288. input[type="search"],
  289. input[type="url"],
  290. input[type="password"],
  291. input[type="text"],
  292. input[type="number"] {
  293. color: var(--input-color);
  294. background: var(--input-background);
  295. border: var(--input-border);
  296. padding: 3px;
  297. line-height: 20px;
  298. width: 250px;
  299. font-size: 99%;
  300. margin-bottom: 10px;
  301. margin-top: 5px;
  302. -webkit-appearance: none;
  303. }
  304. input[type="search"]:focus,
  305. input[type="url"]:focus,
  306. input[type="password"]:focus,
  307. input[type="text"]:focus,
  308. input[type="number"]:focus {
  309. color: var(--input-focus-color);
  310. border-color: var(--input-focus-border-color);
  311. outline: 0;
  312. box-shadow: var(--input-focus-box-shadow);
  313. }
  314. #form-entries-per-page {
  315. max-width: 80px;
  316. }
  317. input[type="checkbox"] {
  318. margin-bottom: 15px;
  319. }
  320. textarea {
  321. width: 350px;
  322. color: var(--input-color);
  323. background: var(--input-background);
  324. border: var(--input-border);
  325. padding: 3px;
  326. margin-bottom: 10px;
  327. margin-top: 5px;
  328. -webkit-appearance: none;
  329. }
  330. textarea:focus {
  331. color: var(--input-focus-color);
  332. border-color: var(--input-focus-border-color);
  333. outline: 0;
  334. box-shadow: var(--input-focus-box-shadow);
  335. }
  336. input::placeholder {
  337. color: var(--input-placeholder-color);
  338. padding-top: 2px;
  339. }
  340. .form-label-row {
  341. display: flex;
  342. }
  343. .form-help {
  344. font-size: 0.9em;
  345. color: brown;
  346. margin-bottom: 15px;
  347. }
  348. .form-section {
  349. border-left: 2px dotted #ddd;
  350. padding-left: 20px;
  351. margin-left: 10px;
  352. }
  353. details > summary {
  354. outline: none;
  355. cursor: pointer;
  356. }
  357. .details-content {
  358. margin-top: 15px;
  359. }
  360. /* Buttons */
  361. a.button {
  362. text-decoration: none;
  363. }
  364. .button {
  365. display: inline-block;
  366. -webkit-appearance: none;
  367. -moz-appearance: none;
  368. font-size: 1.1em;
  369. cursor: pointer;
  370. padding: 3px 10px;
  371. border: 1px solid;
  372. border-radius: unset;
  373. }
  374. .button-primary {
  375. border-color: var(--button-primary-border-color);
  376. background: var(--button-primary-background);
  377. color: var(--button-primary-color);
  378. }
  379. a.button-primary:hover,
  380. a.button-primary:focus,
  381. .button-primary:hover,
  382. .button-primary:focus {
  383. border-color: var(--button-primary-focus-border-color);
  384. background: var(--button-primary-focus-background);
  385. color: var(--button-primary-color);
  386. }
  387. .button-danger {
  388. border-color: #b0281a;
  389. background: #d14836;
  390. color: #fff;
  391. }
  392. .button-danger:hover,
  393. .button-danger:focus {
  394. color: #fff;
  395. background: #c53727;
  396. }
  397. .button:disabled {
  398. color: #ccc;
  399. background: #f7f7f7;
  400. border-color: #ccc;
  401. }
  402. .buttons {
  403. margin-top: 10px;
  404. margin-bottom: 20px;
  405. }
  406. fieldset .buttons {
  407. margin-bottom: 0;
  408. }
  409. /* Alerts */
  410. .alert {
  411. padding: 8px 35px 8px 14px;
  412. margin-bottom: 20px;
  413. color: var(--alert-color);
  414. background-color: var(--alert-background-color);
  415. border: 1px solid var(--alert-border-color);
  416. border-radius: 4px;
  417. overflow: auto;
  418. }
  419. .alert h3 {
  420. margin-top: 0;
  421. margin-bottom: 15px;
  422. }
  423. .alert-success {
  424. color: var(--alert-success-color);
  425. background-color: var(--alert-success-background-color);
  426. border-color: var(--alert-success-border-color);
  427. }
  428. .alert-error {
  429. color: var(--alert-error-color);
  430. background-color: var(--alert-error-background-color);
  431. border-color: var(--alert-error-border-color);
  432. }
  433. .alert-error h3,
  434. .alert-error a {
  435. color: var(--alert-error-color);
  436. }
  437. .alert-info {
  438. color: var(--alert-info-color);
  439. background-color: var(--alert-info-background-color);
  440. border-color: var(--alert-info-border-color);
  441. }
  442. /* Panel */
  443. .panel {
  444. color: var(--panel-color);
  445. background-color: var(--panel-background);
  446. border: 1px solid var(--panel-border-color);
  447. border-radius: 5px;
  448. padding: 10px;
  449. margin-bottom: 15px;
  450. }
  451. .panel h3 {
  452. font-weight: 500;
  453. margin-top: 0;
  454. margin-bottom: 20px;
  455. }
  456. .panel ul {
  457. margin-left: 30px;
  458. }
  459. /* Modals */
  460. template {
  461. display: none;
  462. }
  463. #modal-left {
  464. position: fixed;
  465. top: 0;
  466. left: 0;
  467. bottom: 0;
  468. width: 380px;
  469. overflow: auto;
  470. color: var(--modal-color);
  471. background: var(--modal-background);
  472. box-shadow: var(--modal-box-shadow);
  473. padding: 5px;
  474. padding-top: 30px;
  475. }
  476. #modal-left h3 {
  477. font-weight: 400;
  478. margin: 0;
  479. }
  480. .btn-close-modal {
  481. position: absolute;
  482. top: 0;
  483. right: 0;
  484. font-size: 1.7em;
  485. color: #ccc;
  486. padding:0 .2em;
  487. margin: 10px;
  488. text-decoration: none;
  489. background-color: transparent;
  490. border: none;
  491. }
  492. .btn-close-modal:hover {
  493. color: #999;
  494. }
  495. /* Keyboard Shortcuts */
  496. .keyboard-shortcuts li {
  497. margin-left: 25px;
  498. list-style-type: square;
  499. color: var(--keyboard-shortcuts-li-color);
  500. font-size: 0.95em;
  501. line-height: 1.45em;
  502. }
  503. .keyboard-shortcuts p {
  504. line-height: 1.9em;
  505. }
  506. /* Login form */
  507. .login-form {
  508. margin: 50px auto 0;
  509. max-width: 280px;
  510. }
  511. /* Counters */
  512. .unread-counter-wrapper,
  513. .error-feeds-counter-wrapper {
  514. font-size: 0.9em;
  515. font-weight: 300;
  516. color: var(--counter-color);
  517. }
  518. /* Category label */
  519. .category {
  520. font-size: 0.75em;
  521. background-color: var(--category-background-color);
  522. border: 1px solid var(--category-border-color);
  523. border-radius: 5px;
  524. margin-left: 0.25em;
  525. padding: 1px 0.4em 1px 0.4em;
  526. white-space: nowrap;
  527. color: var(--category-color);
  528. }
  529. .category a {
  530. color: var(--category-link-color);
  531. text-decoration: none;
  532. }
  533. .category a:hover,
  534. .category a:focus {
  535. color: var(--category-link-hover-color);
  536. }
  537. /* Pagination */
  538. .pagination {
  539. font-size: 1.1em;
  540. display: flex;
  541. align-items: center;
  542. }
  543. .pagination-top {
  544. padding-bottom: 8px;
  545. }
  546. .pagination-bottom {
  547. padding-top: 8px;
  548. }
  549. .pagination-entry-top {
  550. padding-top: 8px;
  551. }
  552. .pagination-entry-bottom {
  553. border-top: 1px dotted var(--pagination-border-color);
  554. margin-bottom: 15px;
  555. margin-top: 50px;
  556. padding-top: 8px;
  557. }
  558. .pagination > div {
  559. flex: 1;
  560. }
  561. .pagination-next {
  562. text-align: right;
  563. }
  564. .pagination-prev:before {
  565. content: "« ";
  566. }
  567. .pagination-next:after {
  568. content: " »";
  569. }
  570. .pagination a {
  571. color: var(--pagination-link-color);
  572. }
  573. .pagination a:hover,
  574. .pagination a:focus {
  575. text-decoration: none;
  576. }
  577. /* List view */
  578. .item {
  579. border: 1px dotted var(--item-border-color);
  580. margin-bottom: 20px;
  581. padding: var(--item-padding);
  582. overflow: hidden;
  583. }
  584. .item.current-item {
  585. border: var(--current-item-border-width) solid var(--current-item-border-color);
  586. padding: 3px;
  587. box-shadow: var(--current-item-box-shadow);
  588. }
  589. .item-title a {
  590. text-decoration: none;
  591. font-weight: var(--item-title-link-font-weight);
  592. }
  593. .item-status-read .item-title a {
  594. color: var(--item-status-read-title-link-color);
  595. }
  596. .item-meta {
  597. color: var(--item-meta-focus-color);
  598. font-size: 0.8em;
  599. }
  600. .item-meta a {
  601. color: #777;
  602. text-decoration: none;
  603. }
  604. .item-meta a:hover,
  605. .item-meta a:focus {
  606. color: #333;
  607. }
  608. .item-meta ul {
  609. margin-top: 5px;
  610. }
  611. .item-meta li {
  612. display: inline-block;
  613. }
  614. .item-meta-info {
  615. font-size: 0.85em;
  616. }
  617. .item-meta-info li:not(:last-child):after {
  618. content: "|";
  619. color: var(--item-meta-li-color);
  620. }
  621. .item-meta-icons li {
  622. margin-right: 8px;
  623. margin-top: 4px;
  624. }
  625. .item-meta-icons li:last-child {
  626. margin-right: 0;
  627. }
  628. .items {
  629. overflow-x: hidden;
  630. touch-action: pan-y;
  631. }
  632. .hide-read-items .item-status-read:not(.current-item) {
  633. display: none;
  634. }
  635. .entry-swipe {
  636. transition-property: transform;
  637. transition-duration: 0s;
  638. transition-timing-function: ease-out;
  639. }
  640. /* Feeds list */
  641. article.feed-parsing-error {
  642. background-color: var(--feed-parsing-error-background-color);
  643. border-style: var(--feed-parsing-error-border-style);
  644. border-color: var(--feed-parsing-error-border-color);
  645. }
  646. article.feed-has-unread {
  647. background-color: var(--feed-has-unread-background-color);
  648. border-style: var(--feed-has-unread-border-style);
  649. border-color: var(--feed-has-unread-border-color);
  650. }
  651. .parsing-error {
  652. font-size: 0.85em;
  653. margin-top: 2px;
  654. color: var(--parsing-error-color);
  655. }
  656. .parsing-error-count {
  657. cursor: pointer;
  658. }
  659. /* Categories list */
  660. article.category-has-unread {
  661. background-color: var(--category-has-unread-background-color);
  662. border-style: var(--category-has-unread-border-style);
  663. border-color: var(--category-has-unread-border-color);
  664. }
  665. /* Icons */
  666. .icon,
  667. .icon-label {
  668. vertical-align: middle;
  669. display: inline-block;
  670. padding-right: 2px;
  671. }
  672. .icon {
  673. width: 16px;
  674. height: 16px;
  675. }
  676. /* Entry view */
  677. .entry header {
  678. padding-bottom: 5px;
  679. border-bottom: 1px dotted var(--entry-header-border-color);
  680. }
  681. .entry header h1 {
  682. font-size: 2.0em;
  683. line-height: 1.25em;
  684. margin: 5px 0 30px 0;
  685. overflow-wrap: break-word;
  686. }
  687. .entry header h1 a {
  688. text-decoration: none;
  689. color: var(--entry-header-title-link-color);
  690. }
  691. .entry header h1 a:hover,
  692. .entry header h1 a:focus {
  693. color: #666;
  694. }
  695. .entry-actions {
  696. margin-bottom: 20px;
  697. }
  698. .entry-actions a {
  699. text-decoration: none;
  700. }
  701. .entry-actions li {
  702. display: inline-block;
  703. margin-right: 15px;
  704. line-height: 1.7em;
  705. }
  706. .entry-meta {
  707. font-size: 0.95em;
  708. margin: 0 0 20px;
  709. color: #666;
  710. overflow-wrap: break-word;
  711. }
  712. .entry-tags {
  713. margin-top: 20px;
  714. margin-bottom: 20px;
  715. }
  716. .entry-tags strong {
  717. font-weight: 600;
  718. }
  719. .entry-website img {
  720. vertical-align: top;
  721. }
  722. .entry-website a {
  723. color: #666;
  724. vertical-align: top;
  725. text-decoration: none;
  726. }
  727. .entry-website a:hover,
  728. .entry-website a:focus {
  729. text-decoration: underline;
  730. }
  731. .entry-date {
  732. font-size: 0.65em;
  733. font-style: italic;
  734. color: #555;
  735. }
  736. .entry-content {
  737. padding-top: 15px;
  738. font-size: 1.2em;
  739. font-weight: var(--entry-content-font-weight);
  740. font-family: var(--entry-content-font-family);
  741. color: var(--entry-content-color);
  742. line-height: 1.4em;
  743. overflow-wrap: break-word;
  744. touch-action: pan-y pinch-zoom;
  745. }
  746. .entry-content h1, h2, h3, h4, h5, h6 {
  747. margin-top: 15px;
  748. margin-bottom: 10px;
  749. }
  750. .entry-content iframe,
  751. .entry-content video,
  752. .entry-content img {
  753. max-width: 100%;
  754. }
  755. .entry-content figure {
  756. margin-top: 15px;
  757. margin-bottom: 15px;
  758. }
  759. .entry-content figure img {
  760. border: 1px solid #000;
  761. }
  762. .entry-content figcaption {
  763. font-size: 0.75em;
  764. text-transform: uppercase;
  765. color: #777;
  766. }
  767. .entry-content p {
  768. margin-top: 10px;
  769. margin-bottom: 15px;
  770. }
  771. .entry-content a {
  772. overflow-wrap: break-word;
  773. }
  774. .entry-content a:visited {
  775. color: var(--link-visited-color);
  776. }
  777. .entry-content dt {
  778. font-weight: 500;
  779. margin-top: 15px;
  780. color: #555;
  781. }
  782. .entry-content dd {
  783. margin-left: 15px;
  784. margin-top: 5px;
  785. padding-left: 20px;
  786. border-left: 3px solid #ddd;
  787. color: #777;
  788. font-weight: 300;
  789. line-height: 1.4em;
  790. }
  791. .entry-content blockquote {
  792. border-left: 4px solid #ddd;
  793. padding-left: 25px;
  794. margin-left: 20px;
  795. margin-top: 20px;
  796. margin-bottom: 20px;
  797. line-height: 1.4em;
  798. font-family: var(--entry-content-quote-font-family);
  799. }
  800. .entry-content q {
  801. color: var(--entry-content-quote-color);
  802. font-family: var(--entry-content-quote-font-family);
  803. font-style: italic;
  804. }
  805. .entry-content q:before {
  806. content: "“";
  807. }
  808. .entry-content q:after {
  809. content: "”";
  810. }
  811. .entry-content pre {
  812. padding: 5px;
  813. overflow: auto;
  814. overflow-wrap: initial;
  815. border-width: 1px;
  816. border-style: solid;
  817. }
  818. .entry-content pre,
  819. .entry-content code {
  820. color: var(--entry-content-code-color);
  821. background: var(--entry-content-code-background);
  822. border-color: var(--entry-content-code-border-color);
  823. }
  824. .entry-content table {
  825. max-width: 100%;
  826. }
  827. .entry-content ul,
  828. .entry-content ol {
  829. margin-left: 30px;
  830. margin-top: 15px;
  831. margin-bottom: 15px;
  832. }
  833. .entry-content li ul,
  834. .entry-content li ol {
  835. margin-top: 0;
  836. margin-bottom: 0;
  837. }
  838. .entry-content ul {
  839. list-style-type: square;
  840. }
  841. .entry-content strong {
  842. font-weight: 600;
  843. }
  844. .entry-content sub,
  845. .entry-content sup {
  846. font-size: 75%;
  847. line-height: 0;
  848. position: relative;
  849. vertical-align: baseline;
  850. }
  851. .entry-content sub {
  852. bottom: -0.25em;
  853. }
  854. .entry-content sup {
  855. top: -0.5em;
  856. }
  857. .entry-content abbr {
  858. cursor: pointer;
  859. text-decoration: none;
  860. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  861. }
  862. details.entry-enclosures {
  863. margin-top: 25px;
  864. }
  865. .entry-enclosures summary {
  866. font-weight: 500;
  867. font-size: 1.2em;
  868. }
  869. .entry-enclosure {
  870. border: 1px dotted var(--entry-enclosure-border-color);
  871. padding: 5px;
  872. margin-top: 10px;
  873. max-width: 100%;
  874. }
  875. .entry-enclosure-download {
  876. font-size: 0.85em;
  877. overflow-wrap: break-word;
  878. }
  879. .enclosure-video video,
  880. .enclosure-image img {
  881. max-width: 100%;
  882. }
  883. /* Confirmation */
  884. .confirm {
  885. font-weight: 500;
  886. color: #ed2d04;
  887. }
  888. .confirm a {
  889. color: #ed2d04;
  890. }
  891. .loading {
  892. font-style: italic;
  893. }
  894. /* Bookmarlet */
  895. .bookmarklet {
  896. border: 1px dashed #ccc;
  897. border-radius: 5px;
  898. padding: 15px;
  899. margin: 15px;
  900. text-align: center;
  901. }
  902. .bookmarklet a {
  903. font-weight: 600;
  904. text-decoration: none;
  905. font-size: 1.2em;
  906. }
  907. .disabled {
  908. opacity: 20%;
  909. }
  910. audio, video {
  911. width: 100%;
  912. }
  913. .integration-form summary {
  914. font-weight: 700;
  915. }
  916. .integration-form details {
  917. margin-bottom: 15px;
  918. }
  919. .integration-form details .form-section {
  920. margin-top: 15px;
  921. }