common.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085
  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 a:hover {
  60. color: #888;
  61. }
  62. .header a {
  63. font-size: 0.9em;
  64. color: var(--header-link-color);
  65. text-decoration: none;
  66. border: none;
  67. font-weight: 400;
  68. }
  69. .header .active a {
  70. color: var(--header-active-link-color);
  71. /* Note: Firefox on Windows does not show the link as bold if the value is under 600 */
  72. font-weight: 600;
  73. }
  74. .header a:hover {
  75. color: var(--header-link-hover-color);
  76. }
  77. .header a:focus {
  78. color: var(--header-link-focus-color);
  79. }
  80. /* Page header and footer*/
  81. .page-header {
  82. margin-bottom: 25px;
  83. }
  84. .page-footer {
  85. margin-bottom: 10px;
  86. }
  87. .page-header h1 {
  88. font-weight: 500;
  89. border-bottom: 1px dotted var(--page-header-title-border-color);
  90. }
  91. .page-header h1 a {
  92. text-decoration: none;
  93. color: var(--page-header-title-color);
  94. }
  95. .page-header h1 a:hover,
  96. .page-header h1 a:focus {
  97. color: #666;
  98. }
  99. .page-header li,
  100. .page-footer li {
  101. list-style-type: none;
  102. line-height: 1.8em;
  103. white-space: nowrap;
  104. }
  105. .page-header ul a .icon {
  106. padding-bottom: 2px;
  107. }
  108. /* Logo */
  109. .logo {
  110. cursor: pointer;
  111. text-align: center;
  112. }
  113. .logo a {
  114. color: var(--logo-color);
  115. letter-spacing: 1px;
  116. }
  117. .logo a:hover {
  118. color: #339966;
  119. }
  120. .logo a span {
  121. color: #339966;
  122. }
  123. .logo a:hover span {
  124. color: var(--logo-hover-color-span);
  125. }
  126. /* Search form */
  127. .search {
  128. text-align: center;
  129. display: none;
  130. }
  131. .search-toggle-switch {
  132. display: none;
  133. }
  134. /* PWA prompt */
  135. #prompt-home-screen {
  136. display: none;
  137. position: fixed;
  138. bottom: 0;
  139. right: 0;
  140. width: 100%;
  141. text-align: center;
  142. background: #000;
  143. opacity: 85%;
  144. }
  145. #btn-add-to-home-screen {
  146. text-decoration: none;
  147. line-height: 30px;
  148. color: #fff;
  149. }
  150. #btn-add-to-home-screen:hover {
  151. color: red;
  152. }
  153. /* Notification - "Toast" */
  154. #toast-wrapper {
  155. visibility: hidden;
  156. opacity: 0;
  157. position: fixed;
  158. left: 0;
  159. bottom: 10%;
  160. color: #fff;
  161. width: 100%;
  162. text-align: center;
  163. }
  164. #toast-msg {
  165. background-color: rgba(0,0,0,0.7);
  166. padding-bottom: 4px;
  167. padding-left: 4px;
  168. padding-right: 5px;
  169. border-radius: 5px;
  170. }
  171. .toast-animate {
  172. animation: toastKeyFrames 2s;
  173. }
  174. @keyframes toastKeyFrames {
  175. 0% {visibility: hidden; opacity: 0;}
  176. 25% {visibility: visible; opacity: 1; z-index: 9999}
  177. 50% {visibility: visible; opacity: 1; z-index: 9999}
  178. 75% {visibility: visible; opacity: 1; z-index: 9999}
  179. 100% {visibility: hidden; opacity: 0; z-index: 0}
  180. }
  181. @media (min-width: 600px) {
  182. body {
  183. margin: auto;
  184. max-width: 750px;
  185. }
  186. .header {
  187. margin-bottom: 0;
  188. }
  189. .logo {
  190. text-align: left;
  191. float: left;
  192. margin-right: 15px;
  193. margin-left: 5px;
  194. }
  195. .header nav ul {
  196. display: block;
  197. }
  198. .header li {
  199. display: inline;
  200. padding: 0;
  201. padding-right: 15px;
  202. line-height: normal;
  203. border: none;
  204. font-size: 1.0em;
  205. }
  206. .page-header li,
  207. .page-footer li {
  208. display: inline;
  209. padding-right: 15px;
  210. }
  211. /* Search form */
  212. .search {
  213. text-align: right;
  214. display: block;
  215. margin-top: 10px;
  216. margin-right: 5px;
  217. }
  218. .search-toggle-switch {
  219. display: block;
  220. }
  221. .search-form {
  222. display: none;
  223. }
  224. .search-toggle-switch.has-search-query {
  225. display: none;
  226. }
  227. .search-form.has-search-query {
  228. display: block;
  229. }
  230. }
  231. /* Tables */
  232. table {
  233. width: 100%;
  234. border-collapse: collapse;
  235. }
  236. table, th, td {
  237. border: 1px solid var(--table-border-color);
  238. }
  239. th, td {
  240. padding: 5px;
  241. text-align: left;
  242. }
  243. td {
  244. vertical-align: top;
  245. }
  246. th {
  247. background: var(--table-th-background);
  248. color: var(--table-th-color);
  249. font-weight: 400;
  250. }
  251. tr:hover {
  252. color: var(--table-tr-hover-color);
  253. background-color: var(--table-tr-hover-background-color);
  254. }
  255. .column-40 {
  256. width: 40%;
  257. }
  258. .column-25 {
  259. width: 25%;
  260. }
  261. .column-20 {
  262. width: 20%;
  263. }
  264. /* Forms */
  265. fieldset {
  266. border: 1px solid #ddd;
  267. padding: 8px;
  268. }
  269. legend {
  270. font-weight: 500;
  271. padding-left: 3px;
  272. padding-right: 3px;
  273. }
  274. label {
  275. cursor: pointer;
  276. display: block;
  277. }
  278. .radio-group {
  279. line-height: 1.9em;
  280. }
  281. div.radio-group label {
  282. display: inline-block;
  283. }
  284. select {
  285. margin-bottom: 15px;
  286. }
  287. input[type="search"],
  288. input[type="url"],
  289. input[type="password"],
  290. input[type="text"],
  291. input[type="number"] {
  292. color: var(--input-color);
  293. background: var(--input-background);
  294. border: var(--input-border);
  295. padding: 3px;
  296. line-height: 20px;
  297. width: 250px;
  298. font-size: 99%;
  299. margin-bottom: 10px;
  300. margin-top: 5px;
  301. -webkit-appearance: none;
  302. }
  303. input[type="search"]:focus,
  304. input[type="url"]:focus,
  305. input[type="password"]:focus,
  306. input[type="text"]:focus,
  307. input[type="number"]:focus {
  308. color: var(--input-focus-color);
  309. border-color: var(--input-focus-border-color);
  310. outline: 0;
  311. box-shadow: var(--input-focus-box-shadow);
  312. }
  313. #form-entries-per-page {
  314. max-width: 80px;
  315. }
  316. input[type="checkbox"] {
  317. margin-bottom: 15px;
  318. }
  319. textarea {
  320. width: 350px;
  321. color: var(--input-color);
  322. background: var(--input-background);
  323. border: var(--input-border);
  324. padding: 3px;
  325. margin-bottom: 10px;
  326. margin-top: 5px;
  327. -webkit-appearance: none;
  328. }
  329. textarea:focus {
  330. color: var(--input-focus-color);
  331. border-color: var(--input-focus-border-color);
  332. outline: 0;
  333. box-shadow: var(--input-focus-box-shadow);
  334. }
  335. input::placeholder {
  336. color: var(--input-placeholder-color);
  337. padding-top: 2px;
  338. }
  339. .form-label-row {
  340. display: flex;
  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. a.button-primary:hover,
  379. a.button-primary:focus,
  380. .button-primary:hover,
  381. .button-primary:focus {
  382. border-color: var(--button-primary-focus-border-color);
  383. background: var(--button-primary-focus-background);
  384. color: var(--button-primary-color);
  385. }
  386. .button-danger {
  387. border-color: #b0281a;
  388. background: #d14836;
  389. color: #fff;
  390. }
  391. .button-danger:hover,
  392. .button-danger:focus {
  393. color: #fff;
  394. background: #c53727;
  395. }
  396. .button:disabled {
  397. color: #ccc;
  398. background: #f7f7f7;
  399. border-color: #ccc;
  400. }
  401. .buttons {
  402. margin-top: 10px;
  403. margin-bottom: 20px;
  404. }
  405. /* Alerts */
  406. .alert {
  407. padding: 8px 35px 8px 14px;
  408. margin-bottom: 20px;
  409. color: var(--alert-color);
  410. background-color: var(--alert-background-color);
  411. border: 1px solid var(--alert-border-color);
  412. border-radius: 4px;
  413. overflow: auto;
  414. }
  415. .alert h3 {
  416. margin-top: 0;
  417. margin-bottom: 15px;
  418. }
  419. .alert-success {
  420. color: var(--alert-success-color);
  421. background-color: var(--alert-success-background-color);
  422. border-color: var(--alert-success-border-color);
  423. }
  424. .alert-error {
  425. color: var(--alert-error-color);
  426. background-color: var(--alert-error-background-color);
  427. border-color: var(--alert-error-border-color);
  428. }
  429. .alert-error h3,
  430. .alert-error a {
  431. color: var(--alert-error-color);
  432. }
  433. .alert-info {
  434. color: var(--alert-info-color);
  435. background-color: var(--alert-info-background-color);
  436. border-color: var(--alert-info-border-color);
  437. }
  438. /* Panel */
  439. .panel {
  440. color: var(--panel-color);
  441. background-color: var(--panel-background);
  442. border: 1px solid var(--panel-border-color);
  443. border-radius: 5px;
  444. padding: 10px;
  445. margin-bottom: 15px;
  446. }
  447. .panel h3 {
  448. font-weight: 500;
  449. margin-top: 0;
  450. margin-bottom: 20px;
  451. }
  452. .panel ul {
  453. margin-left: 30px;
  454. }
  455. /* Modals */
  456. template {
  457. display: none;
  458. }
  459. #modal-left {
  460. position: fixed;
  461. top: 0;
  462. left: 0;
  463. bottom: 0;
  464. width: 380px;
  465. overflow: auto;
  466. color: var(--modal-color);
  467. background: var(--modal-background);
  468. box-shadow: var(--modal-box-shadow);
  469. padding: 5px;
  470. padding-top: 30px;
  471. }
  472. #modal-left h3 {
  473. font-weight: 400;
  474. margin: 0;
  475. }
  476. .btn-close-modal {
  477. position: absolute;
  478. top: 0;
  479. right: 0;
  480. font-size: 1.7em;
  481. color: #ccc;
  482. padding:0 .2em;
  483. margin: 10px;
  484. text-decoration: none;
  485. }
  486. .btn-close-modal:hover {
  487. color: #999;
  488. }
  489. /* Keyboard Shortcuts */
  490. .keyboard-shortcuts li {
  491. margin-left: 25px;
  492. list-style-type: square;
  493. color: var(--keyboard-shortcuts-li-color);
  494. font-size: 0.95em;
  495. line-height: 1.45em;
  496. }
  497. .keyboard-shortcuts p {
  498. line-height: 1.9em;
  499. }
  500. /* Login form */
  501. .login-form {
  502. margin: 50px auto 0;
  503. max-width: 280px;
  504. }
  505. /* Counters */
  506. .unread-counter-wrapper,
  507. .error-feeds-counter-wrapper {
  508. font-size: 0.9em;
  509. font-weight: 300;
  510. color: var(--counter-color);
  511. }
  512. /* Category label */
  513. .category {
  514. font-size: 0.75em;
  515. background-color: var(--category-background-color);
  516. border: 1px solid var(--category-border-color);
  517. border-radius: 5px;
  518. margin-left: 0.25em;
  519. padding: 1px 0.4em 1px 0.4em;
  520. white-space: nowrap;
  521. color: var(--category-color);
  522. }
  523. .category a {
  524. color: var(--category-link-color);
  525. text-decoration: none;
  526. }
  527. .category a:hover,
  528. .category a:focus {
  529. color: var(--category-link-hover-color);
  530. }
  531. /* Pagination */
  532. .pagination {
  533. font-size: 1.1em;
  534. display: flex;
  535. align-items: center;
  536. }
  537. .pagination-top {
  538. padding-bottom: 8px;
  539. }
  540. .pagination-bottom {
  541. padding-top: 8px;
  542. }
  543. .pagination-entry-top {
  544. padding-top: 8px;
  545. }
  546. .pagination-entry-bottom {
  547. border-top: 1px dotted var(--pagination-border-color);
  548. margin-bottom: 15px;
  549. margin-top: 50px;
  550. padding-top: 8px;
  551. }
  552. .pagination > div {
  553. flex: 1;
  554. }
  555. .pagination-next {
  556. text-align: right;
  557. }
  558. .pagination-prev:before {
  559. content: "« ";
  560. }
  561. .pagination-next:after {
  562. content: " »";
  563. }
  564. .pagination a {
  565. color: var(--pagination-link-color);
  566. }
  567. .pagination a:hover,
  568. .pagination a:focus {
  569. text-decoration: none;
  570. }
  571. /* List view */
  572. .item {
  573. border: 1px dotted var(--item-border-color);
  574. margin-bottom: 20px;
  575. padding: var(--item-padding);
  576. overflow: hidden;
  577. }
  578. .item.current-item {
  579. border: var(--current-item-border-width) solid var(--current-item-border-color);
  580. padding: 3px;
  581. box-shadow: var(--current-item-box-shadow);
  582. }
  583. .item-title a {
  584. text-decoration: none;
  585. font-weight: var(--item-title-link-font-weight);
  586. }
  587. .item-status-read .item-title a {
  588. color: var(--item-status-read-title-link-color);
  589. }
  590. .item-meta {
  591. color: var(--item-meta-focus-color);
  592. font-size: 0.8em;
  593. }
  594. .item-meta a {
  595. color: #777;
  596. text-decoration: none;
  597. }
  598. .item-meta a:hover,
  599. .item-meta a:focus {
  600. color: #333;
  601. }
  602. .item-meta ul {
  603. margin-top: 5px;
  604. }
  605. .item-meta li {
  606. display: inline-block;
  607. }
  608. .item-meta-info {
  609. font-size: 0.85em;
  610. }
  611. .item-meta-info li:after {
  612. content: "|";
  613. color: var(--item-meta-li-color);
  614. }
  615. .item-meta-info li:last-child:after {
  616. content: "";
  617. }
  618. .item-meta-icons li {
  619. margin-right: 8px;
  620. margin-top: 4px;
  621. }
  622. .item-meta-icons li:last-child {
  623. margin-right: 0;
  624. }
  625. .items {
  626. overflow-x: hidden;
  627. touch-action: pan-y;
  628. }
  629. .hide-read-items .item-status-read:not(.current-item) {
  630. display: none;
  631. }
  632. .entry-swipe {
  633. transition-property: transform;
  634. transition-duration: 0s;
  635. transition-timing-function: ease-out;
  636. }
  637. /* Feeds list */
  638. article.feed-parsing-error {
  639. background-color: var(--feed-parsing-error-background-color);
  640. border-style: var(--feed-parsing-error-border-style);
  641. border-color: var(--feed-parsing-error-border-color);
  642. }
  643. article.feed-has-unread {
  644. background-color: var(--feed-has-unread-background-color);
  645. border-style: var(--feed-has-unread-border-style);
  646. border-color: var(--feed-has-unread-border-color);
  647. }
  648. .parsing-error {
  649. font-size: 0.85em;
  650. margin-top: 2px;
  651. color: var(--parsing-error-color);
  652. }
  653. .parsing-error-count {
  654. cursor: pointer;
  655. }
  656. /* Categories list */
  657. article.category-has-unread {
  658. background-color: var(--category-has-unread-background-color);
  659. border-style: var(--category-has-unread-border-style);
  660. border-color: var(--category-has-unread-border-color);
  661. }
  662. /* Icons */
  663. .icon,
  664. .icon-label {
  665. vertical-align: middle;
  666. display: inline-block;
  667. padding-right: 2px;
  668. }
  669. .icon {
  670. width: 16px;
  671. height: 16px;
  672. }
  673. /* Entry view */
  674. .entry header {
  675. padding-bottom: 5px;
  676. border-bottom: 1px dotted var(--entry-header-border-color);
  677. }
  678. .entry header h1 {
  679. font-size: 2.0em;
  680. line-height: 1.25em;
  681. margin: 5px 0 30px 0;
  682. }
  683. .entry header h1 a {
  684. text-decoration: none;
  685. color: var(--entry-header-title-link-color);
  686. }
  687. .entry header h1 a:hover,
  688. .entry header h1 a:focus {
  689. color: #666;
  690. }
  691. .entry-actions {
  692. margin-bottom: 20px;
  693. }
  694. .entry-actions a {
  695. text-decoration: none;
  696. }
  697. .entry-actions li {
  698. display: inline-block;
  699. margin-right: 15px;
  700. line-height: 1.7em;
  701. }
  702. .entry-meta {
  703. font-size: 0.95em;
  704. margin: 0 0 20px;
  705. color: #666;
  706. overflow-wrap: break-word;
  707. }
  708. .entry-website img {
  709. vertical-align: top;
  710. }
  711. .entry-website a {
  712. color: #666;
  713. vertical-align: top;
  714. text-decoration: none;
  715. }
  716. .entry-website a:hover,
  717. .entry-website a:focus {
  718. text-decoration: underline;
  719. }
  720. .entry-date {
  721. font-size: 0.65em;
  722. font-style: italic;
  723. color: #555;
  724. }
  725. .entry-content {
  726. padding-top: 15px;
  727. font-size: 1.2em;
  728. font-weight: var(--entry-content-font-weight);
  729. font-family: var(--entry-content-font-family);
  730. color: var(--entry-content-color);
  731. line-height: 1.4em;
  732. overflow-wrap: break-word;
  733. }
  734. .entry-content h1, h2, h3, h4, h5, h6 {
  735. margin-top: 15px;
  736. margin-bottom: 10px;
  737. }
  738. .entry-content iframe,
  739. .entry-content video,
  740. .entry-content img {
  741. max-width: 100%;
  742. }
  743. .entry-content figure {
  744. margin-top: 15px;
  745. margin-bottom: 15px;
  746. }
  747. .entry-content figure img {
  748. border: 1px solid #000;
  749. }
  750. .entry-content figcaption {
  751. font-size: 0.75em;
  752. text-transform: uppercase;
  753. color: #777;
  754. }
  755. .entry-content p {
  756. margin-top: 10px;
  757. margin-bottom: 15px;
  758. }
  759. .entry-content a {
  760. overflow-wrap: break-word;
  761. }
  762. .entry-content a:visited {
  763. color: var(--link-visited-color);
  764. }
  765. .entry-content dt {
  766. font-weight: 500;
  767. margin-top: 15px;
  768. color: #555;
  769. }
  770. .entry-content dd {
  771. margin-left: 15px;
  772. margin-top: 5px;
  773. padding-left: 20px;
  774. border-left: 3px solid #ddd;
  775. color: #777;
  776. font-weight: 300;
  777. line-height: 1.4em;
  778. }
  779. .entry-content blockquote {
  780. border-left: 4px solid #ddd;
  781. padding-left: 25px;
  782. margin-left: 20px;
  783. margin-top: 20px;
  784. margin-bottom: 20px;
  785. line-height: 1.4em;
  786. font-family: var(--entry-content-quote-font-family);
  787. }
  788. .entry-content q {
  789. color: var(--entry-content-quote-color);
  790. font-family: var(--entry-content-quote-font-family);
  791. font-style: italic;
  792. }
  793. .entry-content q:before {
  794. content: "“";
  795. }
  796. .entry-content q:after {
  797. content: "”";
  798. }
  799. .entry-content pre {
  800. padding: 5px;
  801. overflow: auto;
  802. overflow-wrap: initial;
  803. border-width: 1px;
  804. border-style: solid;
  805. }
  806. .entry-content pre,
  807. .entry-content code {
  808. color: var(--entry-content-code-color);
  809. background: var(--entry-content-code-background);
  810. border-color: var(--entry-content-code-border-color);
  811. }
  812. .entry-content table {
  813. max-width: 100%;
  814. }
  815. .entry-content ul,
  816. .entry-content ol {
  817. margin-left: 30px;
  818. margin-top: 15px;
  819. margin-bottom: 15px;
  820. }
  821. .entry-content li ul,
  822. .entry-content li ol {
  823. margin-top: 0;
  824. margin-bottom: 0;
  825. }
  826. .entry-content ul {
  827. list-style-type: square;
  828. }
  829. .entry-content strong {
  830. font-weight: 600;
  831. }
  832. .entry-content sub,
  833. .entry-content sup {
  834. font-size: 75%;
  835. line-height: 0;
  836. position: relative;
  837. vertical-align: baseline;
  838. }
  839. .entry-content sub {
  840. bottom: -0.25em;
  841. }
  842. .entry-content sup {
  843. top: -0.5em;
  844. }
  845. .entry-content abbr {
  846. cursor: pointer;
  847. text-decoration: none;
  848. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  849. }
  850. details.entry-enclosures {
  851. margin-top: 25px;
  852. }
  853. .entry-enclosures summary {
  854. font-weight: 500;
  855. font-size: 1.2em;
  856. }
  857. .entry-enclosure {
  858. border: 1px dotted var(--entry-enclosure-border-color);
  859. padding: 5px;
  860. margin-top: 10px;
  861. max-width: 100%;
  862. }
  863. .entry-enclosure-download {
  864. font-size: 0.85em;
  865. overflow-wrap: break-word;
  866. }
  867. .enclosure-video video,
  868. .enclosure-image img {
  869. max-width: 100%;
  870. }
  871. /* Confirmation */
  872. .confirm {
  873. font-weight: 500;
  874. color: #ed2d04;
  875. }
  876. .confirm a {
  877. color: #ed2d04;
  878. }
  879. .loading {
  880. font-style: italic;
  881. }
  882. /* Bookmarlet */
  883. .bookmarklet {
  884. border: 1px dashed #ccc;
  885. border-radius: 5px;
  886. padding: 15px;
  887. margin: 15px;
  888. text-align: center;
  889. }
  890. .bookmarklet a {
  891. font-weight: 600;
  892. text-decoration: none;
  893. font-size: 1.2em;
  894. }
  895. .disabled {
  896. opacity: 20%;
  897. }