common.css 19 KB

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