common.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  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. padding-right: 2px;
  634. }
  635. .icon {
  636. width: 16px;
  637. height: 16px;
  638. }
  639. /* Entry view */
  640. .entry header {
  641. padding-bottom: 5px;
  642. border-bottom: 1px dotted var(--entry-header-border-color);
  643. }
  644. .entry header h1 {
  645. font-size: 2.0em;
  646. line-height: 1.25em;
  647. margin: 5px 0 30px 0;
  648. }
  649. .entry header h1 a {
  650. text-decoration: none;
  651. color: var(--entry-header-title-link-color);
  652. }
  653. .entry header h1 a:hover,
  654. .entry header h1 a:focus {
  655. color: #666;
  656. }
  657. .entry-actions {
  658. margin-bottom: 20px;
  659. }
  660. .entry-actions a {
  661. text-decoration: none;
  662. }
  663. .entry-actions li {
  664. display: inline-block;
  665. margin-right: 15px;
  666. line-height: 1.7em;
  667. }
  668. .entry-meta {
  669. font-size: 0.95em;
  670. margin: 0 0 20px;
  671. color: #666;
  672. overflow-wrap: break-word;
  673. }
  674. .entry-website img {
  675. vertical-align: top;
  676. }
  677. .entry-website a {
  678. color: #666;
  679. vertical-align: top;
  680. text-decoration: none;
  681. }
  682. .entry-website a:hover,
  683. .entry-website a:focus {
  684. text-decoration: underline;
  685. }
  686. .entry-date {
  687. font-size: 0.65em;
  688. font-style: italic;
  689. color: #555;
  690. }
  691. .entry-content {
  692. padding-top: 15px;
  693. font-size: 1.2em;
  694. font-weight: var(--entry-content-font-weight);
  695. font-family: var(--entry-content-font-family);
  696. color: var(--entry-content-color);
  697. line-height: 1.4em;
  698. overflow-wrap: break-word;
  699. }
  700. .entry-content h1, h2, h3, h4, h5, h6 {
  701. margin-top: 15px;
  702. margin-bottom: 10px;
  703. }
  704. .entry-content iframe,
  705. .entry-content video,
  706. .entry-content img {
  707. max-width: 100%;
  708. }
  709. .entry-content figure {
  710. margin-top: 15px;
  711. margin-bottom: 15px;
  712. }
  713. .entry-content figure img {
  714. border: 1px solid #000;
  715. }
  716. .entry-content figcaption {
  717. font-size: 0.75em;
  718. text-transform: uppercase;
  719. color: #777;
  720. }
  721. .entry-content p {
  722. margin-top: 10px;
  723. margin-bottom: 15px;
  724. }
  725. .entry-content a {
  726. overflow-wrap: break-word;
  727. }
  728. .entry-content a:visited {
  729. color: purple;
  730. }
  731. .entry-content dt {
  732. font-weight: 500;
  733. margin-top: 15px;
  734. color: #555;
  735. }
  736. .entry-content dd {
  737. margin-left: 15px;
  738. margin-top: 5px;
  739. padding-left: 20px;
  740. border-left: 3px solid #ddd;
  741. color: #777;
  742. font-weight: 300;
  743. line-height: 1.4em;
  744. }
  745. .entry-content blockquote {
  746. border-left: 4px solid #ddd;
  747. padding-left: 25px;
  748. margin-left: 20px;
  749. margin-top: 20px;
  750. margin-bottom: 20px;
  751. line-height: 1.4em;
  752. font-family: var(--entry-content-quote-font-family);
  753. }
  754. .entry-content q {
  755. color: var(--entry-content-quote-color);
  756. font-family: var(--entry-content-quote-font-family);
  757. font-style: italic;
  758. }
  759. .entry-content q:before {
  760. content: "“";
  761. }
  762. .entry-content q:after {
  763. content: "”";
  764. }
  765. .entry-content pre {
  766. padding: 5px;
  767. overflow: auto;
  768. overflow-wrap: initial;
  769. border-width: 1px;
  770. border-style: solid;
  771. }
  772. .entry-content pre,
  773. .entry-content code {
  774. color: var(--entry-content-code-color);
  775. background: var(--entry-content-code-background);
  776. border-color: var(--entry-content-code-border-color);
  777. }
  778. .entry-content table {
  779. max-width: 100%;
  780. }
  781. .entry-content ul,
  782. .entry-content ol {
  783. margin-left: 30px;
  784. margin-top: 15px;
  785. margin-bottom: 15px;
  786. }
  787. .entry-content li ul,
  788. .entry-content li ol {
  789. margin-top: 0;
  790. margin-bottom: 0;
  791. }
  792. .entry-content ul {
  793. list-style-type: square;
  794. }
  795. .entry-content strong {
  796. font-weight: 600;
  797. }
  798. .entry-content sub,
  799. .entry-content sup {
  800. font-size: 75%;
  801. line-height: 0;
  802. position: relative;
  803. vertical-align: baseline;
  804. }
  805. .entry-content sub {
  806. bottom: -0.25em;
  807. }
  808. .entry-content sup {
  809. top: -0.5em;
  810. }
  811. .entry-content abbr {
  812. cursor: pointer;
  813. text-decoration: none;
  814. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  815. }
  816. details.entry-enclosures {
  817. margin-top: 25px;
  818. }
  819. .entry-enclosures summary {
  820. font-weight: 500;
  821. font-size: 1.2em;
  822. }
  823. .entry-enclosure {
  824. border: 1px dotted var(--entry-enclosure-border-color);
  825. padding: 5px;
  826. margin-top: 10px;
  827. max-width: 100%;
  828. }
  829. .entry-enclosure-download {
  830. font-size: 0.85em;
  831. overflow-wrap: break-word;
  832. }
  833. .enclosure-video video,
  834. .enclosure-image img {
  835. max-width: 100%;
  836. }
  837. /* Confirmation */
  838. .confirm {
  839. font-weight: 500;
  840. color: #ed2d04;
  841. }
  842. .confirm a {
  843. color: #ed2d04;
  844. }
  845. .loading {
  846. font-style: italic;
  847. }
  848. /* Bookmarlet */
  849. .bookmarklet {
  850. border: 1px dashed #ccc;
  851. border-radius: 5px;
  852. padding: 15px;
  853. margin: 15px;
  854. text-align: center;
  855. }
  856. .bookmarklet a {
  857. font-weight: 600;
  858. text-decoration: none;
  859. font-size: 1.2em;
  860. }