common.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077
  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-title a {
  580. text-decoration: none;
  581. font-weight: var(--item-title-link-font-weight);
  582. }
  583. .item-status-read .item-title a {
  584. color: var(--item-status-read-title-link-color);
  585. }
  586. .item-meta {
  587. color: var(--item-meta-focus-color);
  588. font-size: 0.8em;
  589. }
  590. .item-meta a {
  591. color: #777;
  592. text-decoration: none;
  593. }
  594. .item-meta a:hover,
  595. .item-meta a:focus {
  596. color: #333;
  597. }
  598. .item-meta ul {
  599. margin-top: 5px;
  600. }
  601. .item-meta li {
  602. display: inline-block;
  603. }
  604. .item-meta-info {
  605. font-size: 0.85em;
  606. }
  607. .item-meta-info li:after {
  608. content: "|";
  609. color: var(--item-meta-li-color);
  610. }
  611. .item-meta-info li:last-child:after {
  612. content: "";
  613. }
  614. .item-meta-icons li {
  615. margin-right: 8px;
  616. margin-top: 4px;
  617. }
  618. .item-meta-icons li:last-child {
  619. margin-right: 0;
  620. }
  621. .items {
  622. overflow-x: hidden;
  623. touch-action: pan-y;
  624. }
  625. .hide-read-items .item-status-read:not(.current-item) {
  626. display: none;
  627. }
  628. .touch-item {
  629. transition-property: transform;
  630. transition-duration: 0s;
  631. transition-timing-function: ease-out;
  632. }
  633. /* Feeds list */
  634. article.feed-parsing-error {
  635. background-color: var(--feed-parsing-error-background-color);
  636. border-style: var(--feed-parsing-error-border-style);
  637. border-color: var(--feed-parsing-error-border-color);
  638. }
  639. article.feed-has-unread {
  640. background-color: var(--feed-has-unread-background-color);
  641. border-style: var(--feed-has-unread-border-style);
  642. border-color: var(--feed-has-unread-border-color);
  643. }
  644. .parsing-error {
  645. font-size: 0.85em;
  646. margin-top: 2px;
  647. color: var(--parsing-error-color);
  648. }
  649. .parsing-error-count {
  650. cursor: pointer;
  651. }
  652. /* Icons */
  653. .icon,
  654. .icon-label {
  655. vertical-align: middle;
  656. display: inline-block;
  657. padding-right: 2px;
  658. }
  659. .icon {
  660. width: 16px;
  661. height: 16px;
  662. }
  663. /* Entry view */
  664. .entry header {
  665. padding-bottom: 5px;
  666. border-bottom: 1px dotted var(--entry-header-border-color);
  667. }
  668. .entry header h1 {
  669. font-size: 2.0em;
  670. line-height: 1.25em;
  671. margin: 5px 0 30px 0;
  672. }
  673. .entry header h1 a {
  674. text-decoration: none;
  675. color: var(--entry-header-title-link-color);
  676. }
  677. .entry header h1 a:hover,
  678. .entry header h1 a:focus {
  679. color: #666;
  680. }
  681. .entry-actions {
  682. margin-bottom: 20px;
  683. }
  684. .entry-actions a {
  685. text-decoration: none;
  686. }
  687. .entry-actions li {
  688. display: inline-block;
  689. margin-right: 15px;
  690. line-height: 1.7em;
  691. }
  692. .entry-meta {
  693. font-size: 0.95em;
  694. margin: 0 0 20px;
  695. color: #666;
  696. overflow-wrap: break-word;
  697. }
  698. .entry-website img {
  699. vertical-align: top;
  700. }
  701. .entry-website a {
  702. color: #666;
  703. vertical-align: top;
  704. text-decoration: none;
  705. }
  706. .entry-website a:hover,
  707. .entry-website a:focus {
  708. text-decoration: underline;
  709. }
  710. .entry-date {
  711. font-size: 0.65em;
  712. font-style: italic;
  713. color: #555;
  714. }
  715. .entry-content {
  716. padding-top: 15px;
  717. font-size: 1.2em;
  718. font-weight: var(--entry-content-font-weight);
  719. font-family: var(--entry-content-font-family);
  720. color: var(--entry-content-color);
  721. line-height: 1.4em;
  722. overflow-wrap: break-word;
  723. }
  724. .entry-content h1, h2, h3, h4, h5, h6 {
  725. margin-top: 15px;
  726. margin-bottom: 10px;
  727. }
  728. .entry-content iframe,
  729. .entry-content video,
  730. .entry-content img {
  731. max-width: 100%;
  732. }
  733. .entry-content figure {
  734. margin-top: 15px;
  735. margin-bottom: 15px;
  736. }
  737. .entry-content figure img {
  738. border: 1px solid #000;
  739. }
  740. .entry-content figcaption {
  741. font-size: 0.75em;
  742. text-transform: uppercase;
  743. color: #777;
  744. }
  745. .entry-content p {
  746. margin-top: 10px;
  747. margin-bottom: 15px;
  748. }
  749. .entry-content a {
  750. overflow-wrap: break-word;
  751. }
  752. .entry-content a:visited {
  753. color: var(--link-visited-color);
  754. }
  755. .entry-content dt {
  756. font-weight: 500;
  757. margin-top: 15px;
  758. color: #555;
  759. }
  760. .entry-content dd {
  761. margin-left: 15px;
  762. margin-top: 5px;
  763. padding-left: 20px;
  764. border-left: 3px solid #ddd;
  765. color: #777;
  766. font-weight: 300;
  767. line-height: 1.4em;
  768. }
  769. .entry-content blockquote {
  770. border-left: 4px solid #ddd;
  771. padding-left: 25px;
  772. margin-left: 20px;
  773. margin-top: 20px;
  774. margin-bottom: 20px;
  775. line-height: 1.4em;
  776. font-family: var(--entry-content-quote-font-family);
  777. }
  778. .entry-content q {
  779. color: var(--entry-content-quote-color);
  780. font-family: var(--entry-content-quote-font-family);
  781. font-style: italic;
  782. }
  783. .entry-content q:before {
  784. content: "“";
  785. }
  786. .entry-content q:after {
  787. content: "”";
  788. }
  789. .entry-content pre {
  790. padding: 5px;
  791. overflow: auto;
  792. overflow-wrap: initial;
  793. border-width: 1px;
  794. border-style: solid;
  795. }
  796. .entry-content pre,
  797. .entry-content code {
  798. color: var(--entry-content-code-color);
  799. background: var(--entry-content-code-background);
  800. border-color: var(--entry-content-code-border-color);
  801. }
  802. .entry-content table {
  803. max-width: 100%;
  804. }
  805. .entry-content ul,
  806. .entry-content ol {
  807. margin-left: 30px;
  808. margin-top: 15px;
  809. margin-bottom: 15px;
  810. }
  811. .entry-content li ul,
  812. .entry-content li ol {
  813. margin-top: 0;
  814. margin-bottom: 0;
  815. }
  816. .entry-content ul {
  817. list-style-type: square;
  818. }
  819. .entry-content strong {
  820. font-weight: 600;
  821. }
  822. .entry-content sub,
  823. .entry-content sup {
  824. font-size: 75%;
  825. line-height: 0;
  826. position: relative;
  827. vertical-align: baseline;
  828. }
  829. .entry-content sub {
  830. bottom: -0.25em;
  831. }
  832. .entry-content sup {
  833. top: -0.5em;
  834. }
  835. .entry-content abbr {
  836. cursor: pointer;
  837. text-decoration: none;
  838. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  839. }
  840. details.entry-enclosures {
  841. margin-top: 25px;
  842. }
  843. .entry-enclosures summary {
  844. font-weight: 500;
  845. font-size: 1.2em;
  846. }
  847. .entry-enclosure {
  848. border: 1px dotted var(--entry-enclosure-border-color);
  849. padding: 5px;
  850. margin-top: 10px;
  851. max-width: 100%;
  852. }
  853. .entry-enclosure-download {
  854. font-size: 0.85em;
  855. overflow-wrap: break-word;
  856. }
  857. .enclosure-video video,
  858. .enclosure-image img {
  859. max-width: 100%;
  860. }
  861. /* Confirmation */
  862. .confirm {
  863. font-weight: 500;
  864. color: #ed2d04;
  865. }
  866. .confirm a {
  867. color: #ed2d04;
  868. }
  869. .loading {
  870. font-style: italic;
  871. }
  872. /* Bookmarlet */
  873. .bookmarklet {
  874. border: 1px dashed #ccc;
  875. border-radius: 5px;
  876. padding: 15px;
  877. margin: 15px;
  878. text-align: center;
  879. }
  880. .bookmarklet a {
  881. font-weight: 600;
  882. text-decoration: none;
  883. font-size: 1.2em;
  884. }
  885. .rules-entry {
  886. display: flex;
  887. }
  888. .disabled {
  889. opacity: 20%;
  890. }