Advertisement
difool2nice

reader.css

Oct 5th, 2022
772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1.  
  2. @-moz-document url-prefix("about:reader") {
  3.     body {
  4.         background-color: #1e1d2d !important;
  5.     }
  6.  
  7.     /* Unstick the toolbar so it can scroll */
  8.     /*#toolbar {
  9.         position: static !important;
  10.     }*/
  11.  
  12.     /* Put the toolbar back at the left */
  13.     .reader-toolbar {
  14.         margin-left: 16px !important;
  15.     }
  16.  
  17.     .toolbar {
  18.         border: none !important;
  19.         background-color: #1e1d2d !important;
  20.         width: 40px !important;
  21.     }
  22.  
  23.     button {
  24.         fill: #ffffff !important;
  25.         background-color: #1e90ff !important;
  26.         border: none !important;
  27.     }
  28.  
  29.     button:hover {
  30.         background-color: #1e90ff80 !important;
  31.     }
  32.  
  33.     .dropdown-popup {
  34.         background-color: #1e1d2d !important;
  35.         box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5) !important;
  36.         border-radius: 0px !important;
  37.         border: none !important;
  38.         opacity: 0 !important;
  39.         transition: opacity 150ms, visibility 0s 2s !important;
  40.     }
  41.  
  42.     .open>.dropdown-popup {
  43.         opacity: 1 !important;
  44.         transition: opacity 150ms !important;
  45.     }
  46.  
  47.     .dropdown-arrow {
  48.         display: none !important;
  49.     }
  50.  
  51.     .dropdown.open {
  52.         background-color: #1e90ff !important;
  53.     }
  54.  
  55.     .narrate-row:not(:first-child) {
  56.         border: none !important;
  57.     }
  58.  
  59.     .font-type-buttons>button>.description {
  60.         color: #bebebe !important;
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement