common.css 20 KB

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