Astral Codex Ten Background Colour Fix

Removes light blue background colour from Astral Codex Ten.

目前为 2022-07-27 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name Astral Codex Ten Background Colour Fix
  3. @description Removes light blue background colour from Astral Codex Ten.
  4. @author Korakys
  5. @namespace astralcodexten.substack.com
  6. @version 0.1.4
  7. @license CC0
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("astralcodexten.substack.com") {
  11. body {
  12. :root {
  13. --cover_bg_color: initial !important;
  14. --web_bg_color: initial !important;
  15. }
  16. }
  17. html {
  18. :root {
  19. --cover_bg_color: initial !important;
  20. --web_bg_color: initial !important;
  21. }
  22. }
  23. }