common.css 21 KB

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