common.css 18 KB

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