common.css 17 KB

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