Guest User

Firefox Reader-Mode CSS

a guest
Nov 26th, 2017
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.61 KB | None | 0 0
  1. /* Formats for Reader Mode */
  2. @-moz-document url-prefix("about:reader") {
  3.  
  4.     html {
  5.     font-size: 1rem !important;
  6.     }
  7.  
  8.     body {
  9.     font-family: Garamond, Times, serif !important;
  10.     }
  11.  
  12.     body.sepia {
  13.     background-color: #fffff8 !important;
  14.     color: #330 !important;
  15.     }
  16.  
  17.     img,
  18.     img[moz-reader-center] {
  19.     float: right !important;
  20.     clear: right !important;
  21.     padding: 0.5em !important;
  22.     margin: 1em !important;
  23.     border: solid 1px #ccc !important;
  24.     }
  25.  
  26.     #container {
  27.     max-width: 37em !important;
  28.     padding: 1em 4em !important;
  29.     }
  30.  
  31.     #container .font-size5 {
  32.     font-size: 1rem !important;
  33.     }
  34.  
  35.     a {
  36.     color: #2a5ab5 !important;
  37.     text-decoration: none !important;
  38.     transition-property: color, background-color !important;
  39.     transition-duration: 0.3s !important;
  40.     transition-timing-function: linear !important;
  41.     transition-delay: 0.1s !important;
  42.     }
  43.  
  44.     body.dark a {
  45.         color: #6abaf5 !important;
  46.     color: #f0f8ff !important;
  47.         color: #a0b6df !important;
  48.     }
  49.  
  50.     a:hover {
  51.     background-color: #f0f8ff !important;
  52.     text-decoration: underline !important;
  53.     }
  54.  
  55.     body.dark a:hover {
  56.         color: #c0d6ff !important;
  57.         background-color: #555555 !important;
  58.     }
  59.  
  60.     a:active {
  61.     background-color: #2a5ab5 !important;
  62.     color: #fffff6 !important;
  63.     }
  64.  
  65.     body.dark a:active {
  66.     color: #2a5ab5 !important;
  67.     background-color: #fffff6 !important;
  68.     }
  69.  
  70.     /* General article formatting... */
  71.     #container p,
  72.     #container code,
  73.     #container pre,
  74.     /* #container blockquote, */
  75.     #container ul,
  76.     #container ol,
  77.     #container li,
  78.     #container figure,
  79.     #container .wp-caption {
  80.         margin: 0.25em !important;
  81.     padding: 0.25em !important;
  82.     }
  83.  
  84.     #container blockquote,
  85.     #container .entry-content blockquote,
  86.     #container body.sepia blockquote {
  87.     margin-top: 1.5em !important;
  88.     margin-left: 1.5em !important;
  89.     margin-right: 1.5em !important;
  90.     border: none !important;
  91.     -moz-border-start: none !important;
  92.     }
  93.  
  94.     /* First-graf initial and boldline */
  95.  
  96.     #readability-page-1 p:first-of-type {
  97.     margin-top: 3em !important;
  98.     }
  99.  
  100.     #readability-page-1 p:first-of-type:first-line {
  101.     font-weight: bold !important;
  102.     }
  103.  
  104.     #readability-page-1 p:first-of-type:first-letter {
  105.     float: left !important;
  106.     font-size: 6em !important;
  107.     line-height: 0.75 !important;
  108.     padding-right: 0.05em !important;
  109.     color: #330 !important;
  110.     font-weight: normal;
  111.     }
  112.  
  113.     #readability-page-1 center p:first-of-type:first-letter,
  114.     #readability-page-1 p[align="center"]:first-of-type:first-letter {
  115.         float: none !important;
  116.     }
  117.  
  118.     body.dark #readability-page-1 p:first-of-type:first-letter {
  119.         color: #eeeeee !important;
  120.     }
  121.  
  122.     /* Not for blockquotes */
  123.     #readability-page-1 blockquote>p:first-of-type {
  124.         margin-top: inherit !important;
  125.     }
  126.  
  127.     /*
  128.     #readability-page-1 blockquote>p:first-of-type:first-line {
  129.         font-weight: inherit !important;
  130.     }
  131.     */
  132.  
  133.     #readability-page-1 blockquote>p:first-of-type:first-letter {
  134.         float: none !important;
  135.     font-size: 1rem !important;
  136.     line-height: 1.4 !important;
  137.     padding-right: none !important;
  138.     color: inherit !important;
  139.     }
  140.  
  141.  
  142.     /* Adverts */
  143.  
  144.     .ad {
  145.     display: none !important;
  146.     }
  147.  
  148.     /* Site-specific crap */
  149.  
  150.     /* USA Today, interstitial teasers */
  151.     .exclude-from-newsgate
  152.  
  153.     /* Esquire */
  154.     , .breaker-ad
  155.     , .vertical-ad
  156.     , .breaker-ad-text
  157.  
  158.     /* NewScientist */
  159.     , #mpu-mid-article
  160.     , .mpu
  161.  
  162.     {
  163.         display: none !important;
  164.     }
  165. }
Advertisement
Add Comment
Please, Sign In to add comment