common.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049
  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. #modal-left {
  455. position: fixed;
  456. top: 0;
  457. left: 0;
  458. bottom: 0;
  459. width: 380px;
  460. overflow: auto;
  461. color: var(--modal-color);
  462. background: var(--modal-background);
  463. box-shadow: var(--modal-box-shadow);
  464. padding: 5px;
  465. padding-top: 30px;
  466. }
  467. #modal-left h3 {
  468. font-weight: 400;
  469. margin: 0;
  470. }
  471. .btn-close-modal {
  472. position: absolute;
  473. top: 0;
  474. right: 0;
  475. font-size: 1.7em;
  476. color: #ccc;
  477. padding:0 .2em;
  478. margin: 10px;
  479. text-decoration: none;
  480. }
  481. .btn-close-modal:hover {
  482. color: #999;
  483. }
  484. /* Keyboard Shortcuts */
  485. .keyboard-shortcuts li {
  486. margin-left: 25px;
  487. list-style-type: square;
  488. color: var(--keyboard-shortcuts-li-color);
  489. font-size: 0.95em;
  490. line-height: 1.45em;
  491. }
  492. .keyboard-shortcuts p {
  493. line-height: 1.9em;
  494. }
  495. /* Login form */
  496. .login-form {
  497. margin: 50px auto 0;
  498. max-width: 280px;
  499. }
  500. /* Counters */
  501. .unread-counter-wrapper,
  502. .error-feeds-counter-wrapper {
  503. font-size: 0.9em;
  504. font-weight: 300;
  505. color: var(--counter-color);
  506. }
  507. /* Category label */
  508. .category {
  509. font-size: 0.75em;
  510. background-color: var(--category-background-color);
  511. border: 1px solid var(--category-border-color);
  512. border-radius: 5px;
  513. margin-left: 0.25em;
  514. padding: 1px 0.4em 1px 0.4em;
  515. white-space: nowrap;
  516. color: var(--category-color);
  517. }
  518. .category a {
  519. color: var(--category-link-color);
  520. text-decoration: none;
  521. }
  522. .category a:hover,
  523. .category a:focus {
  524. color: var(--category-link-hover-color);
  525. }
  526. /* Pagination */
  527. .pagination {
  528. font-size: 1.1em;
  529. display: flex;
  530. align-items: center;
  531. padding-top: 8px;
  532. }
  533. .pagination-bottom {
  534. border-top: 1px dotted var(--pagination-border-color);
  535. margin-bottom: 15px;
  536. margin-top: 50px;
  537. }
  538. .pagination > div {
  539. flex: 1;
  540. }
  541. .pagination-next {
  542. text-align: right;
  543. }
  544. .pagination-prev:before {
  545. content: "« ";
  546. }
  547. .pagination-next:after {
  548. content: " »";
  549. }
  550. .pagination a {
  551. color: var(--pagination-color);
  552. }
  553. .pagination a:hover,
  554. .pagination a:focus {
  555. text-decoration: none;
  556. }
  557. /* List view */
  558. .item {
  559. border: 1px dotted var(--item-border-color);
  560. margin-bottom: 20px;
  561. padding: var(--item-padding);
  562. overflow: hidden;
  563. }
  564. .item.current-item {
  565. border: var(--current-item-border-width) solid var(--current-item-border-color);
  566. padding: 3px;
  567. box-shadow: var(--current-item-box-shadow);
  568. }
  569. .item-title a {
  570. text-decoration: none;
  571. font-weight: var(--item-title-link-font-weight);
  572. }
  573. .item-status-read .item-title a {
  574. color: var(--item-status-read-title-link-color);
  575. }
  576. .item-meta {
  577. color: var(--item-meta-focus-color);
  578. font-size: 0.8em;
  579. }
  580. .item-meta a {
  581. color: #777;
  582. text-decoration: none;
  583. }
  584. .item-meta a:hover,
  585. .item-meta a:focus {
  586. color: #333;
  587. }
  588. .item-meta ul {
  589. margin-top: 5px;
  590. }
  591. .item-meta li {
  592. display: inline-block;
  593. }
  594. .item-meta-info {
  595. font-size: 0.85em;
  596. }
  597. .item-meta-info li:after {
  598. content: "|";
  599. color: var(--item-meta-li-color);
  600. }
  601. .item-meta-info li:last-child:after {
  602. content: "";
  603. }
  604. .item-meta-icons li {
  605. margin-right: 8px;
  606. margin-top: 4px;
  607. }
  608. .item-meta-icons li:last-child {
  609. margin-right: 0;
  610. }
  611. .items {
  612. overflow-x: hidden;
  613. touch-action: pan-y;
  614. }
  615. .hide-read-items .item-status-read:not(.current-item) {
  616. display: none;
  617. }
  618. /* Feeds list */
  619. article.feed-parsing-error {
  620. background-color: var(--feed-parsing-error-background-color);
  621. border-color: #aaa;
  622. }
  623. article.feed-has-unread {
  624. background-color: var(--feed-has-unread-background-color);
  625. border-style: var(--feed-has-unread-border-style);
  626. border-color: var(--feed-has-unread-border-color);
  627. }
  628. .parsing-error {
  629. font-size: 0.85em;
  630. margin-top: 2px;
  631. color: var(--parsing-error-color);
  632. }
  633. .parsing-error-count {
  634. cursor: pointer;
  635. }
  636. /* Icons */
  637. .icon,
  638. .icon-label {
  639. vertical-align: middle;
  640. display: inline-block;
  641. padding-right: 2px;
  642. }
  643. .icon {
  644. width: 16px;
  645. height: 16px;
  646. }
  647. /* Entry view */
  648. .entry header {
  649. padding-bottom: 5px;
  650. border-bottom: 1px dotted var(--entry-header-border-color);
  651. }
  652. .entry header h1 {
  653. font-size: 2.0em;
  654. line-height: 1.25em;
  655. margin: 5px 0 30px 0;
  656. }
  657. .entry header h1 a {
  658. text-decoration: none;
  659. color: var(--entry-header-title-link-color);
  660. }
  661. .entry header h1 a:hover,
  662. .entry header h1 a:focus {
  663. color: #666;
  664. }
  665. .entry-actions {
  666. margin-bottom: 20px;
  667. }
  668. .entry-actions a {
  669. text-decoration: none;
  670. }
  671. .entry-actions li {
  672. display: inline-block;
  673. margin-right: 15px;
  674. line-height: 1.7em;
  675. }
  676. .entry-meta {
  677. font-size: 0.95em;
  678. margin: 0 0 20px;
  679. color: #666;
  680. overflow-wrap: break-word;
  681. }
  682. .entry-website img {
  683. vertical-align: top;
  684. }
  685. .entry-website a {
  686. color: #666;
  687. vertical-align: top;
  688. text-decoration: none;
  689. }
  690. .entry-website a:hover,
  691. .entry-website a:focus {
  692. text-decoration: underline;
  693. }
  694. .entry-date {
  695. font-size: 0.65em;
  696. font-style: italic;
  697. color: #555;
  698. }
  699. .entry-content {
  700. padding-top: 15px;
  701. font-size: 1.2em;
  702. font-weight: var(--entry-content-font-weight);
  703. font-family: var(--entry-content-font-family);
  704. color: var(--entry-content-color);
  705. line-height: 1.4em;
  706. overflow-wrap: break-word;
  707. }
  708. .entry-content h1, h2, h3, h4, h5, h6 {
  709. margin-top: 15px;
  710. margin-bottom: 10px;
  711. }
  712. .entry-content iframe,
  713. .entry-content video,
  714. .entry-content img {
  715. max-width: 100%;
  716. }
  717. .entry-content figure {
  718. margin-top: 15px;
  719. margin-bottom: 15px;
  720. }
  721. .entry-content figure img {
  722. border: 1px solid #000;
  723. }
  724. .entry-content figcaption {
  725. font-size: 0.75em;
  726. text-transform: uppercase;
  727. color: #777;
  728. }
  729. .entry-content p {
  730. margin-top: 10px;
  731. margin-bottom: 15px;
  732. }
  733. .entry-content a {
  734. overflow-wrap: break-word;
  735. }
  736. .entry-content a:visited {
  737. color: var(--link-visited-color);
  738. }
  739. .entry-content dt {
  740. font-weight: 500;
  741. margin-top: 15px;
  742. color: #555;
  743. }
  744. .entry-content dd {
  745. margin-left: 15px;
  746. margin-top: 5px;
  747. padding-left: 20px;
  748. border-left: 3px solid #ddd;
  749. color: #777;
  750. font-weight: 300;
  751. line-height: 1.4em;
  752. }
  753. .entry-content blockquote {
  754. border-left: 4px solid #ddd;
  755. padding-left: 25px;
  756. margin-left: 20px;
  757. margin-top: 20px;
  758. margin-bottom: 20px;
  759. line-height: 1.4em;
  760. font-family: var(--entry-content-quote-font-family);
  761. }
  762. .entry-content q {
  763. color: var(--entry-content-quote-color);
  764. font-family: var(--entry-content-quote-font-family);
  765. font-style: italic;
  766. }
  767. .entry-content q:before {
  768. content: "“";
  769. }
  770. .entry-content q:after {
  771. content: "”";
  772. }
  773. .entry-content pre {
  774. padding: 5px;
  775. overflow: auto;
  776. overflow-wrap: initial;
  777. border-width: 1px;
  778. border-style: solid;
  779. }
  780. .entry-content pre,
  781. .entry-content code {
  782. color: var(--entry-content-code-color);
  783. background: var(--entry-content-code-background);
  784. border-color: var(--entry-content-code-border-color);
  785. }
  786. .entry-content table {
  787. max-width: 100%;
  788. }
  789. .entry-content ul,
  790. .entry-content ol {
  791. margin-left: 30px;
  792. margin-top: 15px;
  793. margin-bottom: 15px;
  794. }
  795. .entry-content li ul,
  796. .entry-content li ol {
  797. margin-top: 0;
  798. margin-bottom: 0;
  799. }
  800. .entry-content ul {
  801. list-style-type: square;
  802. }
  803. .entry-content strong {
  804. font-weight: 600;
  805. }
  806. .entry-content sub,
  807. .entry-content sup {
  808. font-size: 75%;
  809. line-height: 0;
  810. position: relative;
  811. vertical-align: baseline;
  812. }
  813. .entry-content sub {
  814. bottom: -0.25em;
  815. }
  816. .entry-content sup {
  817. top: -0.5em;
  818. }
  819. .entry-content abbr {
  820. cursor: pointer;
  821. text-decoration: none;
  822. border-bottom: 1px dashed var(--entry-content-abbr-border-color);
  823. }
  824. details.entry-enclosures {
  825. margin-top: 25px;
  826. }
  827. .entry-enclosures summary {
  828. font-weight: 500;
  829. font-size: 1.2em;
  830. }
  831. .entry-enclosure {
  832. border: 1px dotted var(--entry-enclosure-border-color);
  833. padding: 5px;
  834. margin-top: 10px;
  835. max-width: 100%;
  836. }
  837. .entry-enclosure-download {
  838. font-size: 0.85em;
  839. overflow-wrap: break-word;
  840. }
  841. .enclosure-video video,
  842. .enclosure-image img {
  843. max-width: 100%;
  844. }
  845. /* Confirmation */
  846. .confirm {
  847. font-weight: 500;
  848. color: #ed2d04;
  849. }
  850. .confirm a {
  851. color: #ed2d04;
  852. }
  853. .loading {
  854. font-style: italic;
  855. }
  856. /* Bookmarlet */
  857. .bookmarklet {
  858. border: 1px dashed #ccc;
  859. border-radius: 5px;
  860. padding: 15px;
  861. margin: 15px;
  862. text-align: center;
  863. }
  864. .bookmarklet a {
  865. font-weight: 600;
  866. text-decoration: none;
  867. font-size: 1.2em;
  868. }