I_Am_John_Smith

POGdesign TV Calendar Dark Mode Fix

Jan 27th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        POGdesign TV Calendar Dark Mode Fix
  3. // @namespace   https://pastebin.com/Kf5RPaA7
  4. // @description Fix Non-Dark Pages
  5. // @match       *://*.pogdesign.co.uk/cat/*
  6. // @version     0.3
  7. // @grant       GM_addStyle
  8. // ==/UserScript==
  9.  
  10. GM_addStyle ( `
  11. .sumpage { background: url(/cat/imgs/style/tronbg16c.jpg) #000 no-repeat center center fixed; }
  12. .parent .seashead { background: rgba(0,0,255,0.5); color: rgba(255,255,255,1); }
  13. .sumpage h3 { color: rgba(255, 255, 255, 0.75); }
  14. .sumquikside a { color: rgba(255, 255, 255, 0.75); }
  15. .seasonside i { color: rgba(255, 255, 255, 0.75); }
  16. .sumtext { color: rgba(255, 255, 255, 0.75); }
  17. .soomdata .hafdata span { color: rgba(196, 196, 196, 0.75); }
  18. .soomdata .hafdata { color: rgba(196, 196, 196, 0.75); }
  19. .RAWR.infochecked a, .infochecked.RAWR a, .RAWR.infochecked .datepub { color: #DDD; }
  20. .ep strong a { display: block; color: #AAA; }
  21. .ep:nth-child(2n) { background: rgba(255,255,255,0); }
  22. .ep:nth-child(2n+1) { background: rgba(255,255,255,0.2); }
  23. ` );
Add Comment
Please, Sign In to add comment