common.css 20 KB

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