common.css 21 KB

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