common.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  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. #modal-left {
  455. position: fixed;
  456. top: 0;
  457. left: 0;
  458. bottom: 0;
  459. width: 380px;
  460. overflow: auto;
  461. color: var(--modal-color);
  462. background: var(--modal-background);
  463. box-shadow: var(--modal-box-shadow);
  464. padding: 5px;
  465. padding-top: 30px;
  466. }
  467. #modal-left h3 {
  468. font-weight: 400;
  469. margin: 0;
  470. }
  471. .btn-close-modal {
  472. position: absolute;
  473. top: 0;
  474. right: 0;
  475. font-size: 1.7em;
  476. color: #ccc;
  477. padding:0 .2em;
  478. margin: 10px;
  479. text-decoration: none;
  480. }
  481. .btn-close-modal:hover {
  482. color: #999;
  483. }
  484. /* Keyboard Shortcuts */
  485. .keyboard-shortcuts li {
  486. margin-left: 25px;
  487. list-style-type: square;
  488. color: var(--keyboard-shortcuts-li-color);
  489. font-size: 0.95em;
  490. line-height: 1.45em;
  491. }
  492. .keyboard-shortcuts p {
  493. line-height: 1.9em;
  494. }
  495. /* Login form */
  496. .login-form {
  497. margin: 50px auto 0;
  498. max-width: 280px;
  499. }
  500. /* Counters */
  501. .unread-counter-wrapper,
  502. .error-feeds-counter-wrapper {
  503. font-size: 0.9em;
  504. font-weight: 300;
  505. color: var(--counter-color);
  506. }
  507. /* Category label */
  508. .category {
  509. font-size: 0.75em;
  510. background-color: var(--category-background-color);
  511. border: 1px solid var(--category-border-color);
  512. border-radius: 5px;
  513. margin-left: 0.25em;
  514. padding: 1px 0.4em 1px 0.4em;
  515. white-space: nowrap;
  516. color: var(--category-color);
  517. }
  518. .category a {
  519. color: var(--category-link-color);
  520. text-decoration: none;
  521. }
  522. .category a:hover,
  523. .category a:focus {
  524. color: var(--category-link-hover-color);
  525. }
  526. /* Pagination */
  527. .pagination {
  528. font-size: 1.1em;
  529. display: flex;
  530. align-items: center;
  531. padding-top: 8px;
  532. }
  533. .pagination-bottom {
  534. border-top: 1px dotted var(--pagination-border-color);
  535. margin-bottom: 15px;
  536. margin-top: 50px;
  537. }
  538. .pagination > div {
  539. flex: 1;
  540. }
  541. .pagination-next {
  542. text-align: right;
  543. }
  544. .pagination-prev:before {
  545. content: "« ";
  546. }
  547. .pagination-next:after {
  548. content: " »";
  549. }
  550. .pagination a {
  551. color: var(--pagination-color);
  552. }
  553. .pagination a:hover,
  554. .pagination a:focus {
  555. text-decoration: none;
  556. }
  557. /* List view */
  558. .item {
  559. border: 1px dotted var(--item-border-color);
  560. margin-bottom: 20px;
  561. padding: var(--item-padding);
  562. overflow: hidden;
  563. }
  564. .item.current-item {
  565. border: var(--current-item-border-width) solid var(--current-item-border-color);
  566. padding: 3px;
  567. box-shadow: var(--current-item-box-shadow);
  568. }
  569. .item-title a {
  570. text-decoration: none;
  571. font-weight: var(--item-title-link-font-weight);
  572. }
  573. .item-status-read .item-title a {
  574. color: var(--item-status-read-title-link-color);
  575. }
  576. .item-meta {
  577. color: var(--item-meta-focus-color);
  578. font-size: 0.8em;
  579. }
  580. .item-meta a {
  581. color: #777;
  582. text-decoration: none;
  583. }
  584. .item-meta a:hover,
  585. .item-meta a:focus {
  586. color: #333;
  587. }
  588. .item-meta ul {
  589. margin-top: 5px;
  590. }
  591. .item-meta li {
  592. display: inline-block;
  593. }
  594. .item-meta-info {
  595. font-size: 0.85em;
  596. }
  597. .item-meta-info li:after {
  598. content: "|";
  599. color: var(--item-meta-li-color);
  600. }
  601. .item-meta-info li:last-child:after {
  602. content: "";
  603. }
  604. .item-meta-icons li {
  605. margin-right: 8px;
  606. margin-top: 4px;
  607. }
  608. .item-meta-icons li:last-child {
  609. margin-right: 0;
  610. }
  611. .items {
  612. overflow-x: hidden;
  613. touch-action: pan-y;
  614. }
  615. .hide-read-items .item-status-read:not(.current-item) {
  616. display: none;
  617. }
  618. /* Feeds list */
  619. article.feed-parsing-error {
  620. background-color: var(--feed-parsing-error-background-color);
  621. border-style: var(--feed-parsing-error-border-style);
  622. border-color: var(--feed-parsing-error-border-color);
  623. }
  624. article.feed-has-unread {
  625. background-color: var(--feed-has-unread-background-color);
  626. border-style: var(--feed-has-unread-border-style);
  627. border-color: var(--feed-has-unread-border-color);
  628. }
  629. .parsing-error {
  630. font-size: 0.85em;
  631. margin-top: 2px;
  632. color: var(--parsing-error-color);
  633. }
  634. .parsing-error-count {
  635. cursor: pointer;
  636. }
  637. /* Icons */
  638. .icon,
  639. .icon-label {
  640. vertical-align: middle;
  641. display: inline-block;
  642. padding-right: 2px;
  643. }
  644. .icon {
  645. width: 16px;
  646. height: 16px;
  647. }
  648. /* Entry view */
  649. .entry header {
  650. padding-bottom: 5px;
  651. border-bottom: 1px dotted var(--entry-header-border-color);
  652. }
  653. .entry header h1 {
  654. font-size: 2.0em;
  655. line-height: 1.25em;
  656. margin: 5px 0 30px 0;
  657. }
  658. .entry header h1 a {
  659. text-decoration: none;
  660. color: var(--entry-header-title-link-color);
  661. }
  662. .entry header h1 a:hover,
  663. .entry header h1 a:focus {
  664. color: #666;
  665. }
  666. .entry-actions {
  667. margin-bottom: 20px;
  668. }
  669. .entry-actions a {
  670. text-decoration: none;
  671. }
  672. .entry-actions li {
  673. display: inline-block;
  674. margin-right: 15px;
  675. line-height: 1.7em;
  676. }
  677. .entry-meta {
  678. font-size: 0.95em;
  679. margin: 0 0 20px;
  680. color: #666;
  681. overflow-wrap: break-word;
  682. }
  683. .entry-website img {
  684. vertical-align: top;
  685. }
  686. .entry-website a {
  687. color: #666;
  688. vertical-align: top;
  689. text-decoration: none;
  690. }
  691. .entry-website a:hover,
  692. .entry-website a:focus {
  693. text-decoration: underline;
  694. }
  695. .entry-date {
  696. font-size: 0.65em;
  697. font-style: italic;
  698. color: #555;
  699. }
  700. .entry-content {
  701. padding-top: 15px;
  702. font-size: 1.2em;
  703. font-weight: var(--entry-content-font-weight);
  704. font-family: var(--entry-content-font-family);
  705. color: var(--entry-content-color);
  706. line-height: 1.4em;
  707. overflow-wrap: break-word;
  708. }
  709. .entry-content h1, h2, h3, h4, h5, h6 {
  710. margin-top: 15px;
  711. margin-bottom: 10px;
  712. }
  713. .entry-content iframe,
  714. .entry-content video,
  715. .entry-content img {
  716. max-width: 100%;
  717. }
  718. .entry-content figure {
  719. margin-top: 15px;
  720. margin-bottom: 15px;
  721. }
  722. .entry-content figure img {
  723. border: 1px solid #000;
  724. }
  725. .entry-content figcaption {
  726. font-size: 0.75em;
  727. text-transform: uppercase;
  728. color: #777;
  729. }
  730. .entry-content p {
  731. margin-top: 10px;
  732. margin-bottom: 15px;
  733. }
  734. .entry-content a {
  735. overflow-wrap: break-word;
  736. }
  737. .entry-content a:visited {
  738. color: var(--link-visited-color);
  739. }
  740. .entry-content dt {
  741. font-weight: 500;
  742. margin-top: 15px;
  743. color: #555;
  744. }
  745. .entry-content dd {
  746. margin-left: 15px;
  747. margin-top: 5px;
  748. padding-left: 20px;
  749. border-left: 3px solid #ddd;
  750. color: #777;
  751. font-weight: 300;
  752. line-height: 1.4em;
  753. }
  754. .entry-content blockquote {
  755. border-left: 4px solid #ddd;
  756. padding-left: 25px;
  757. margin-left: 20px;
  758. margin-top: 20px;
  759. margin-bottom: 20px;
  760. line-height: 1.4em;
  761. font-family: var(--entry-content-quote-font-family);
  762. }
  763. .entry-content q {
  764. color: var(--entry-content-quote-color);
  765. font-family: var(--entry-content-quote-font-family);
  766. font-style: italic;
  767. }
  768. .entry-content q:before {
  769. content: "“";
  770. }
  771. .entry-content q:after {
  772. content: "”";
  773. }
  774. .entry-content pre {
  775. padding: 5px;
  776. overflow: auto;
  777. overflow-wrap: initial;
  778. border-width: 1px;
  779. border-style: solid;
  780. }
  781. .entry-content pre,
  782. .entry-content code {
  783. color: var(--entry-content-code-color);
  784. background: var(--entry-content-code-background);
  785. border-color: var(--entry-content-code-border-color);
  786. }
  787. .entry-content table {
  788. max-width: 100%;
  789. }
  790. .entry-content ul,
  791. .entry-content ol {
  792. margin-left: 30px;
  793. margin-top: 15px;
  794. margin-bottom: 15px;
  795. }
  796. .entry-content li ul,
  797. .entry-content li ol {
  798. margin-top: 0;
  799. margin-bottom: 0;
  800. }
  801. .entry-content ul {
  802. list-style-type: square;
  803. }
  804. .entry-content strong {
  805. font-weight: 600;
  806. }
  807. .entry-content sub,
  808. .entry-content sup {
  809. font-size: 75%;
  810. line-height: 0;
  811. position: relative;
  812. vertical-align: baseline;
  813. }
  814. .entry-content sub {
  815. bottom: -0.25em;
  816. }
  817. .entry-content sup {
  818. top: -0.5em;
  819. }
  820. .entry-content abbr {
  821. cursor: pointer;
  822. text-decoration: none;
  823. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  824. }
  825. details.entry-enclosures {
  826. margin-top: 25px;
  827. }
  828. .entry-enclosures summary {
  829. font-weight: 500;
  830. font-size: 1.2em;
  831. }
  832. .entry-enclosure {
  833. border: 1px dotted var(--entry-enclosure-border-color);
  834. padding: 5px;
  835. margin-top: 10px;
  836. max-width: 100%;
  837. }
  838. .entry-enclosure-download {
  839. font-size: 0.85em;
  840. overflow-wrap: break-word;
  841. }
  842. .enclosure-video video,
  843. .enclosure-image img {
  844. max-width: 100%;
  845. }
  846. /* Confirmation */
  847. .confirm {
  848. font-weight: 500;
  849. color: #ed2d04;
  850. }
  851. .confirm a {
  852. color: #ed2d04;
  853. }
  854. .loading {
  855. font-style: italic;
  856. }
  857. /* Bookmarlet */
  858. .bookmarklet {
  859. border: 1px dashed #ccc;
  860. border-radius: 5px;
  861. padding: 15px;
  862. margin: 15px;
  863. text-align: center;
  864. }
  865. .bookmarklet a {
  866. font-weight: 600;
  867. text-decoration: none;
  868. font-size: 1.2em;
  869. }