common.css 18 KB

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