common.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035
  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-wrap {
  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: 2px 5px;
  166. border-radius: 5px;
  167. }
  168. .toastAnimate {
  169. animation: toastKeyFrames 2s;
  170. }
  171. @keyframes toastKeyFrames {
  172. 0% {visibility: hidden; opacity: 0;}
  173. 25% {visibility: visible; opacity: 1; z-index: 9999}
  174. 50% {visibility: visible; opacity: 1; z-index: 9999}
  175. 75% {visibility: visible; opacity: 1; z-index: 9999}
  176. 100% {visibility: hidden; opacity: 0; z-index: 0}
  177. }
  178. @media (min-width: 600px) {
  179. body {
  180. margin: auto;
  181. max-width: 750px;
  182. }
  183. .header {
  184. margin-bottom: 0;
  185. }
  186. .logo {
  187. text-align: left;
  188. float: left;
  189. margin-right: 15px;
  190. margin-left: 5px;
  191. }
  192. .header nav ul {
  193. display: block;
  194. }
  195. .header li {
  196. display: inline;
  197. padding: 0;
  198. padding-right: 15px;
  199. line-height: normal;
  200. border: none;
  201. font-size: 1.0em;
  202. }
  203. .page-header ul,
  204. .page-footer ul {
  205. margin-left: 0;
  206. }
  207. .page-header li,
  208. .page-footer li {
  209. display: inline;
  210. padding-right: 15px;
  211. }
  212. /* Search form */
  213. .search {
  214. text-align: right;
  215. display: block;
  216. margin-top: 10px;
  217. margin-right: 5px;
  218. }
  219. .search-toggle-switch {
  220. display: block;
  221. }
  222. .search-form {
  223. display: none;
  224. }
  225. .search-toggle-switch.has-search-query {
  226. display: none;
  227. }
  228. .search-form.has-search-query {
  229. display: block;
  230. }
  231. }
  232. /* Tables */
  233. table {
  234. width: 100%;
  235. border-collapse: collapse;
  236. }
  237. table, th, td {
  238. border: 1px solid var(--table-border-color);
  239. }
  240. th, td {
  241. padding: 5px;
  242. text-align: left;
  243. }
  244. td {
  245. vertical-align: top;
  246. }
  247. th {
  248. background: var(--table-th-background);
  249. color: var(--table-th-color);
  250. font-weight: 400;
  251. }
  252. tr:hover {
  253. color: var(--table-tr-hover-color);
  254. background-color: var(--table-tr-hover-background-color);
  255. }
  256. .column-40 {
  257. width: 40%;
  258. }
  259. .column-25 {
  260. width: 25%;
  261. }
  262. .column-20 {
  263. width: 20%;
  264. }
  265. /* Forms */
  266. fieldset {
  267. border: 1px solid #ddd;
  268. padding: 8px;
  269. }
  270. legend {
  271. font-weight: 500;
  272. padding-left: 3px;
  273. padding-right: 3px;
  274. }
  275. label {
  276. cursor: pointer;
  277. display: block;
  278. }
  279. .radio-group {
  280. line-height: 1.9em;
  281. }
  282. div.radio-group label {
  283. display: inline-block;
  284. }
  285. select {
  286. margin-bottom: 15px;
  287. }
  288. input[type="search"],
  289. input[type="url"],
  290. input[type="password"],
  291. input[type="text"],
  292. input[type="number"] {
  293. color: var(--input-color);
  294. background: var(--input-background);
  295. border: var(--input-border);
  296. padding: 3px;
  297. line-height: 20px;
  298. width: 250px;
  299. font-size: 99%;
  300. margin-bottom: 10px;
  301. margin-top: 5px;
  302. -webkit-appearance: none;
  303. }
  304. input[type="search"]:focus,
  305. input[type="url"]:focus,
  306. input[type="password"]:focus,
  307. input[type="text"]:focus,
  308. input[type="number"]:focus {
  309. color: var(--input-focus-color);
  310. border-color: var(--input-focus-border-color);
  311. outline: 0;
  312. box-shadow: var(--input-focus-box-shadow);
  313. }
  314. #form-entries-per-page {
  315. max-width: 80px;
  316. }
  317. input[type="checkbox"] {
  318. margin-bottom: 15px;
  319. }
  320. textarea {
  321. width: 350px;
  322. color: var(--input-color);
  323. background: var(--input-background);
  324. border: var(--input-border);
  325. padding: 3px;
  326. margin-bottom: 10px;
  327. margin-top: 5px;
  328. -webkit-appearance: none;
  329. }
  330. textarea:focus {
  331. color: var(--input-focus-color);
  332. border-color: var(--input-focus-border-color);
  333. outline: 0;
  334. box-shadow: var(--input-focus-box-shadow);
  335. }
  336. ::-moz-placeholder,
  337. ::-ms-input-placeholder,
  338. ::-webkit-input-placeholder {
  339. color: #ddd;
  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. }
  636. .icon {
  637. width: 16px;
  638. height: 16px;
  639. }
  640. /* Entry view */
  641. .entry header {
  642. padding-bottom: 5px;
  643. border-bottom: 1px dotted var(--entry-header-border-color);
  644. }
  645. .entry header h1 {
  646. font-size: 2.0em;
  647. line-height: 1.25em;
  648. margin: 5px 0 30px 0;
  649. }
  650. .entry header h1 a {
  651. text-decoration: none;
  652. color: var(--entry-header-title-link-color);
  653. }
  654. .entry header h1 a:hover,
  655. .entry header h1 a:focus {
  656. color: #666;
  657. }
  658. .entry-actions {
  659. margin-bottom: 20px;
  660. }
  661. .entry-actions a {
  662. text-decoration: none;
  663. }
  664. .entry-actions li {
  665. display: inline-block;
  666. margin-right: 15px;
  667. line-height: 1.7em;
  668. }
  669. .entry-meta {
  670. font-size: 0.95em;
  671. margin: 0 0 20px;
  672. color: #666;
  673. overflow-wrap: break-word;
  674. }
  675. .entry-website img {
  676. vertical-align: top;
  677. }
  678. .entry-website a {
  679. color: #666;
  680. vertical-align: top;
  681. text-decoration: none;
  682. }
  683. .entry-website a:hover,
  684. .entry-website a:focus {
  685. text-decoration: underline;
  686. }
  687. .entry-date {
  688. font-size: 0.65em;
  689. font-style: italic;
  690. color: #555;
  691. }
  692. .entry-content {
  693. padding-top: 15px;
  694. font-size: 1.2em;
  695. font-weight: var(--entry-content-font-weight);
  696. font-family: var(--entry-content-font-family);
  697. color: var(--entry-content-color);
  698. line-height: 1.4em;
  699. overflow-wrap: break-word;
  700. }
  701. .entry-content h1, h2, h3, h4, h5, h6 {
  702. margin-top: 15px;
  703. margin-bottom: 10px;
  704. }
  705. .entry-content iframe,
  706. .entry-content video,
  707. .entry-content img {
  708. max-width: 100%;
  709. }
  710. .entry-content figure {
  711. margin-top: 15px;
  712. margin-bottom: 15px;
  713. }
  714. .entry-content figure img {
  715. border: 1px solid #000;
  716. }
  717. .entry-content figcaption {
  718. font-size: 0.75em;
  719. text-transform: uppercase;
  720. color: #777;
  721. }
  722. .entry-content p {
  723. margin-top: 10px;
  724. margin-bottom: 15px;
  725. }
  726. .entry-content a {
  727. overflow-wrap: break-word;
  728. }
  729. .entry-content a:visited {
  730. color: purple;
  731. }
  732. .entry-content dt {
  733. font-weight: 500;
  734. margin-top: 15px;
  735. color: #555;
  736. }
  737. .entry-content dd {
  738. margin-left: 15px;
  739. margin-top: 5px;
  740. padding-left: 20px;
  741. border-left: 3px solid #ddd;
  742. color: #777;
  743. font-weight: 300;
  744. line-height: 1.4em;
  745. }
  746. .entry-content blockquote {
  747. border-left: 4px solid #ddd;
  748. padding-left: 25px;
  749. margin-left: 20px;
  750. margin-top: 20px;
  751. margin-bottom: 20px;
  752. line-height: 1.4em;
  753. font-family: var(--entry-content-quote-font-family);
  754. }
  755. .entry-content q {
  756. color: var(--entry-content-quote-color);
  757. font-family: var(--entry-content-quote-font-family);
  758. font-style: italic;
  759. }
  760. .entry-content q:before {
  761. content: "“";
  762. }
  763. .entry-content q:after {
  764. content: "”";
  765. }
  766. .entry-content pre {
  767. padding: 5px;
  768. overflow: auto;
  769. overflow-wrap: initial;
  770. border-width: 1px;
  771. border-style: solid;
  772. }
  773. .entry-content pre,
  774. .entry-content code {
  775. color: var(--entry-content-code-color);
  776. background: var(--entry-content-code-background);
  777. border-color: var(--entry-content-code-border-color);
  778. }
  779. .entry-content table {
  780. max-width: 100%;
  781. }
  782. .entry-content ul,
  783. .entry-content ol {
  784. margin-left: 30px;
  785. margin-top: 15px;
  786. margin-bottom: 15px;
  787. }
  788. .entry-content li ul,
  789. .entry-content li ol {
  790. margin-top: 0;
  791. margin-bottom: 0;
  792. }
  793. .entry-content ul {
  794. list-style-type: square;
  795. }
  796. .entry-content strong {
  797. font-weight: 600;
  798. }
  799. .entry-content sub,
  800. .entry-content sup {
  801. font-size: 75%;
  802. line-height: 0;
  803. position: relative;
  804. vertical-align: baseline;
  805. }
  806. .entry-content sub {
  807. bottom: -0.25em;
  808. }
  809. .entry-content sup {
  810. top: -0.5em;
  811. }
  812. details.entry-enclosures {
  813. margin-top: 25px;
  814. }
  815. .entry-enclosures summary {
  816. font-weight: 500;
  817. font-size: 1.2em;
  818. }
  819. .entry-enclosure {
  820. border: 1px dotted var(--entry-enclosure-border-color);
  821. padding: 5px;
  822. margin-top: 10px;
  823. max-width: 100%;
  824. }
  825. .entry-enclosure-download {
  826. font-size: 0.85em;
  827. overflow-wrap: break-word;
  828. }
  829. .enclosure-video video,
  830. .enclosure-image img {
  831. max-width: 100%;
  832. }
  833. /* Confirmation */
  834. .confirm {
  835. font-weight: 500;
  836. color: #ed2d04;
  837. }
  838. .confirm a {
  839. color: #ed2d04;
  840. }
  841. .loading {
  842. font-style: italic;
  843. }
  844. /* Bookmarlet */
  845. .bookmarklet {
  846. border: 1px dashed #ccc;
  847. border-radius: 5px;
  848. padding: 15px;
  849. margin: 15px;
  850. text-align: center;
  851. }
  852. .bookmarklet a {
  853. font-weight: 600;
  854. text-decoration: none;
  855. font-size: 1.2em;
  856. }