common.css 18 KB

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