common.css 18 KB

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