common.css 17 KB

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