common.css 18 KB

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