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-label-row {
  339. display: flex;
  340. }
  341. .form-help {
  342. font-size: 0.9em;
  343. color: brown;
  344. margin-bottom: 15px;
  345. }
  346. .form-section {
  347. border-left: 2px dotted #ddd;
  348. padding-left: 20px;
  349. margin-left: 10px;
  350. }
  351. details > summary {
  352. outline: none;
  353. cursor: pointer;
  354. }
  355. .details-content {
  356. margin-top: 15px;
  357. }
  358. /* Buttons */
  359. a.button {
  360. text-decoration: none;
  361. }
  362. .button {
  363. display: inline-block;
  364. -webkit-appearance: none;
  365. -moz-appearance: none;
  366. font-size: 1.1em;
  367. cursor: pointer;
  368. padding: 3px 10px;
  369. border: 1px solid;
  370. border-radius: unset;
  371. }
  372. .button-primary {
  373. border-color: var(--button-primary-border-color);
  374. background: var(--button-primary-background);
  375. color: var(--button-primary-color);
  376. }
  377. a.button-primary:hover,
  378. a.button-primary:focus,
  379. .button-primary:hover,
  380. .button-primary:focus {
  381. border-color: var(--button-primary-focus-border-color);
  382. background: var(--button-primary-focus-background);
  383. color: var(--button-primary-color);
  384. }
  385. .button-danger {
  386. border-color: #b0281a;
  387. background: #d14836;
  388. color: #fff;
  389. }
  390. .button-danger:hover,
  391. .button-danger:focus {
  392. color: #fff;
  393. background: #c53727;
  394. }
  395. .button:disabled {
  396. color: #ccc;
  397. background: #f7f7f7;
  398. border-color: #ccc;
  399. }
  400. .buttons {
  401. margin-top: 10px;
  402. margin-bottom: 20px;
  403. }
  404. /* Alerts */
  405. .alert {
  406. padding: 8px 35px 8px 14px;
  407. margin-bottom: 20px;
  408. color: var(--alert-color);
  409. background-color: var(--alert-background-color);
  410. border: 1px solid var(--alert-border-color);
  411. border-radius: 4px;
  412. overflow: auto;
  413. }
  414. .alert h3 {
  415. margin-top: 0;
  416. margin-bottom: 15px;
  417. }
  418. .alert-success {
  419. color: var(--alert-success-color);
  420. background-color: var(--alert-success-background-color);
  421. border-color: var(--alert-success-border-color);
  422. }
  423. .alert-error {
  424. color: var(--alert-error-color);
  425. background-color: var(--alert-error-background-color);
  426. border-color: var(--alert-error-border-color);
  427. }
  428. .alert-error h3,
  429. .alert-error a {
  430. color: var(--alert-error-color);
  431. }
  432. .alert-info {
  433. color: var(--alert-info-color);
  434. background-color: var(--alert-info-background-color);
  435. border-color: var(--alert-info-border-color);
  436. }
  437. /* Panel */
  438. .panel {
  439. color: var(--panel-color);
  440. background-color: var(--panel-background);
  441. border: 1px solid var(--panel-border-color);
  442. border-radius: 5px;
  443. padding: 10px;
  444. margin-bottom: 15px;
  445. }
  446. .panel h3 {
  447. font-weight: 500;
  448. margin-top: 0;
  449. margin-bottom: 20px;
  450. }
  451. .panel ul {
  452. margin-left: 30px;
  453. }
  454. /* Modals */
  455. template {
  456. display: none;
  457. }
  458. #modal-left {
  459. position: fixed;
  460. top: 0;
  461. left: 0;
  462. bottom: 0;
  463. width: 380px;
  464. overflow: auto;
  465. color: var(--modal-color);
  466. background: var(--modal-background);
  467. box-shadow: var(--modal-box-shadow);
  468. padding: 5px;
  469. padding-top: 30px;
  470. }
  471. #modal-left h3 {
  472. font-weight: 400;
  473. margin: 0;
  474. }
  475. .btn-close-modal {
  476. position: absolute;
  477. top: 0;
  478. right: 0;
  479. font-size: 1.7em;
  480. color: #ccc;
  481. padding:0 .2em;
  482. margin: 10px;
  483. text-decoration: none;
  484. }
  485. .btn-close-modal:hover {
  486. color: #999;
  487. }
  488. /* Keyboard Shortcuts */
  489. .keyboard-shortcuts li {
  490. margin-left: 25px;
  491. list-style-type: square;
  492. color: var(--keyboard-shortcuts-li-color);
  493. font-size: 0.95em;
  494. line-height: 1.45em;
  495. }
  496. .keyboard-shortcuts p {
  497. line-height: 1.9em;
  498. }
  499. /* Login form */
  500. .login-form {
  501. margin: 50px auto 0;
  502. max-width: 280px;
  503. }
  504. /* Counters */
  505. .unread-counter-wrapper,
  506. .error-feeds-counter-wrapper {
  507. font-size: 0.9em;
  508. font-weight: 300;
  509. color: var(--counter-color);
  510. }
  511. /* Category label */
  512. .category {
  513. font-size: 0.75em;
  514. background-color: var(--category-background-color);
  515. border: 1px solid var(--category-border-color);
  516. border-radius: 5px;
  517. margin-left: 0.25em;
  518. padding: 1px 0.4em 1px 0.4em;
  519. white-space: nowrap;
  520. color: var(--category-color);
  521. }
  522. .category a {
  523. color: var(--category-link-color);
  524. text-decoration: none;
  525. }
  526. .category a:hover,
  527. .category a:focus {
  528. color: var(--category-link-hover-color);
  529. }
  530. /* Pagination */
  531. .pagination {
  532. font-size: 1.1em;
  533. display: flex;
  534. align-items: center;
  535. }
  536. .pagination-top {
  537. padding-bottom: 8px;
  538. }
  539. .pagination-bottom {
  540. padding-top: 8px;
  541. }
  542. .pagination-entry-top {
  543. padding-top: 8px;
  544. }
  545. .pagination-entry-bottom {
  546. border-top: 1px dotted var(--pagination-border-color);
  547. margin-bottom: 15px;
  548. margin-top: 50px;
  549. padding-top: 8px;
  550. }
  551. .pagination > div {
  552. flex: 1;
  553. }
  554. .pagination-next {
  555. text-align: right;
  556. }
  557. .pagination-prev:before {
  558. content: "« ";
  559. }
  560. .pagination-next:after {
  561. content: " »";
  562. }
  563. .pagination a {
  564. color: var(--pagination-link-color);
  565. }
  566. .pagination a:hover,
  567. .pagination a:focus {
  568. text-decoration: none;
  569. }
  570. /* List view */
  571. .item {
  572. border: 1px dotted var(--item-border-color);
  573. margin-bottom: 20px;
  574. padding: var(--item-padding);
  575. overflow: hidden;
  576. }
  577. .item.current-item {
  578. border: var(--current-item-border-width) solid var(--current-item-border-color);
  579. padding: 3px;
  580. box-shadow: var(--current-item-box-shadow);
  581. }
  582. .item-title a {
  583. text-decoration: none;
  584. font-weight: var(--item-title-link-font-weight);
  585. }
  586. .item-status-read .item-title a {
  587. color: var(--item-status-read-title-link-color);
  588. }
  589. .item-meta {
  590. color: var(--item-meta-focus-color);
  591. font-size: 0.8em;
  592. }
  593. .item-meta a {
  594. color: #777;
  595. text-decoration: none;
  596. }
  597. .item-meta a:hover,
  598. .item-meta a:focus {
  599. color: #333;
  600. }
  601. .item-meta ul {
  602. margin-top: 5px;
  603. }
  604. .item-meta li {
  605. display: inline-block;
  606. }
  607. .item-meta-info {
  608. font-size: 0.85em;
  609. }
  610. .item-meta-info li:after {
  611. content: "|";
  612. color: var(--item-meta-li-color);
  613. }
  614. .item-meta-info li:last-child:after {
  615. content: "";
  616. }
  617. .item-meta-icons li {
  618. margin-right: 8px;
  619. margin-top: 4px;
  620. }
  621. .item-meta-icons li:last-child {
  622. margin-right: 0;
  623. }
  624. .items {
  625. overflow-x: hidden;
  626. touch-action: pan-y;
  627. }
  628. .hide-read-items .item-status-read:not(.current-item) {
  629. display: none;
  630. }
  631. .entry-swipe {
  632. transition-property: transform;
  633. transition-duration: 0s;
  634. transition-timing-function: ease-out;
  635. }
  636. /* Feeds list */
  637. article.feed-parsing-error {
  638. background-color: var(--feed-parsing-error-background-color);
  639. border-style: var(--feed-parsing-error-border-style);
  640. border-color: var(--feed-parsing-error-border-color);
  641. }
  642. article.feed-has-unread {
  643. background-color: var(--feed-has-unread-background-color);
  644. border-style: var(--feed-has-unread-border-style);
  645. border-color: var(--feed-has-unread-border-color);
  646. }
  647. .parsing-error {
  648. font-size: 0.85em;
  649. margin-top: 2px;
  650. color: var(--parsing-error-color);
  651. }
  652. .parsing-error-count {
  653. cursor: pointer;
  654. }
  655. /* Categories list */
  656. article.category-has-unread {
  657. background-color: var(--category-has-unread-background-color);
  658. border-style: var(--category-has-unread-border-style);
  659. border-color: var(--category-has-unread-border-color);
  660. }
  661. /* Icons */
  662. .icon,
  663. .icon-label {
  664. vertical-align: middle;
  665. display: inline-block;
  666. padding-right: 2px;
  667. }
  668. .icon {
  669. width: 16px;
  670. height: 16px;
  671. }
  672. /* Entry view */
  673. .entry header {
  674. padding-bottom: 5px;
  675. border-bottom: 1px dotted var(--entry-header-border-color);
  676. }
  677. .entry header h1 {
  678. font-size: 2.0em;
  679. line-height: 1.25em;
  680. margin: 5px 0 30px 0;
  681. }
  682. .entry header h1 a {
  683. text-decoration: none;
  684. color: var(--entry-header-title-link-color);
  685. }
  686. .entry header h1 a:hover,
  687. .entry header h1 a:focus {
  688. color: #666;
  689. }
  690. .entry-actions {
  691. margin-bottom: 20px;
  692. }
  693. .entry-actions a {
  694. text-decoration: none;
  695. }
  696. .entry-actions li {
  697. display: inline-block;
  698. margin-right: 15px;
  699. line-height: 1.7em;
  700. }
  701. .entry-meta {
  702. font-size: 0.95em;
  703. margin: 0 0 20px;
  704. color: #666;
  705. overflow-wrap: break-word;
  706. }
  707. .entry-website img {
  708. vertical-align: top;
  709. }
  710. .entry-website a {
  711. color: #666;
  712. vertical-align: top;
  713. text-decoration: none;
  714. }
  715. .entry-website a:hover,
  716. .entry-website a:focus {
  717. text-decoration: underline;
  718. }
  719. .entry-date {
  720. font-size: 0.65em;
  721. font-style: italic;
  722. color: #555;
  723. }
  724. .entry-content {
  725. padding-top: 15px;
  726. font-size: 1.2em;
  727. font-weight: var(--entry-content-font-weight);
  728. font-family: var(--entry-content-font-family);
  729. color: var(--entry-content-color);
  730. line-height: 1.4em;
  731. overflow-wrap: break-word;
  732. }
  733. .entry-content h1, h2, h3, h4, h5, h6 {
  734. margin-top: 15px;
  735. margin-bottom: 10px;
  736. }
  737. .entry-content iframe,
  738. .entry-content video,
  739. .entry-content img {
  740. max-width: 100%;
  741. }
  742. .entry-content figure {
  743. margin-top: 15px;
  744. margin-bottom: 15px;
  745. }
  746. .entry-content figure img {
  747. border: 1px solid #000;
  748. }
  749. .entry-content figcaption {
  750. font-size: 0.75em;
  751. text-transform: uppercase;
  752. color: #777;
  753. }
  754. .entry-content p {
  755. margin-top: 10px;
  756. margin-bottom: 15px;
  757. }
  758. .entry-content a {
  759. overflow-wrap: break-word;
  760. }
  761. .entry-content a:visited {
  762. color: var(--link-visited-color);
  763. }
  764. .entry-content dt {
  765. font-weight: 500;
  766. margin-top: 15px;
  767. color: #555;
  768. }
  769. .entry-content dd {
  770. margin-left: 15px;
  771. margin-top: 5px;
  772. padding-left: 20px;
  773. border-left: 3px solid #ddd;
  774. color: #777;
  775. font-weight: 300;
  776. line-height: 1.4em;
  777. }
  778. .entry-content blockquote {
  779. border-left: 4px solid #ddd;
  780. padding-left: 25px;
  781. margin-left: 20px;
  782. margin-top: 20px;
  783. margin-bottom: 20px;
  784. line-height: 1.4em;
  785. font-family: var(--entry-content-quote-font-family);
  786. }
  787. .entry-content q {
  788. color: var(--entry-content-quote-color);
  789. font-family: var(--entry-content-quote-font-family);
  790. font-style: italic;
  791. }
  792. .entry-content q:before {
  793. content: "“";
  794. }
  795. .entry-content q:after {
  796. content: "”";
  797. }
  798. .entry-content pre {
  799. padding: 5px;
  800. overflow: auto;
  801. overflow-wrap: initial;
  802. border-width: 1px;
  803. border-style: solid;
  804. }
  805. .entry-content pre,
  806. .entry-content code {
  807. color: var(--entry-content-code-color);
  808. background: var(--entry-content-code-background);
  809. border-color: var(--entry-content-code-border-color);
  810. }
  811. .entry-content table {
  812. max-width: 100%;
  813. }
  814. .entry-content ul,
  815. .entry-content ol {
  816. margin-left: 30px;
  817. margin-top: 15px;
  818. margin-bottom: 15px;
  819. }
  820. .entry-content li ul,
  821. .entry-content li ol {
  822. margin-top: 0;
  823. margin-bottom: 0;
  824. }
  825. .entry-content ul {
  826. list-style-type: square;
  827. }
  828. .entry-content strong {
  829. font-weight: 600;
  830. }
  831. .entry-content sub,
  832. .entry-content sup {
  833. font-size: 75%;
  834. line-height: 0;
  835. position: relative;
  836. vertical-align: baseline;
  837. }
  838. .entry-content sub {
  839. bottom: -0.25em;
  840. }
  841. .entry-content sup {
  842. top: -0.5em;
  843. }
  844. .entry-content abbr {
  845. cursor: pointer;
  846. text-decoration: none;
  847. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  848. }
  849. details.entry-enclosures {
  850. margin-top: 25px;
  851. }
  852. .entry-enclosures summary {
  853. font-weight: 500;
  854. font-size: 1.2em;
  855. }
  856. .entry-enclosure {
  857. border: 1px dotted var(--entry-enclosure-border-color);
  858. padding: 5px;
  859. margin-top: 10px;
  860. max-width: 100%;
  861. }
  862. .entry-enclosure-download {
  863. font-size: 0.85em;
  864. overflow-wrap: break-word;
  865. }
  866. .enclosure-video video,
  867. .enclosure-image img {
  868. max-width: 100%;
  869. }
  870. /* Confirmation */
  871. .confirm {
  872. font-weight: 500;
  873. color: #ed2d04;
  874. }
  875. .confirm a {
  876. color: #ed2d04;
  877. }
  878. .loading {
  879. font-style: italic;
  880. }
  881. /* Bookmarlet */
  882. .bookmarklet {
  883. border: 1px dashed #ccc;
  884. border-radius: 5px;
  885. padding: 15px;
  886. margin: 15px;
  887. text-align: center;
  888. }
  889. .bookmarklet a {
  890. font-weight: 600;
  891. text-decoration: none;
  892. font-size: 1.2em;
  893. }
  894. .disabled {
  895. opacity: 20%;
  896. }