difool2nice

reader.css

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