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