common.css 17 KB

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