Listography Tweaks

Tweaks for listography.com

  1. /* ==UserStyle==
  2. @name Listography Tweaks
  3. @description Tweaks for listography.com
  4. @author petracoding
  5. @license MIT
  6. @homepageURL https://petracoding.github.io/
  7. @supportURL https://petracoding.github.io/
  8. @version 1.0.0
  9.  
  10. @namespace petracoding
  11. @preprocessor stylus
  12.  
  13. @var checkbox broaderLists "Broader Lists on Detail Page" 1
  14. @var color textColor "Main Text Color" #333333
  15. @var color textColor2 "Secondary Text Color" #777777
  16. @var color linkColor "Link Color" #0055aa
  17. @var checkbox darkMode "Dark Mode" 0
  18.  
  19. ==/UserStyle== */
  20.  
  21. @-moz-document domain("listography.com") {
  22. body {
  23. if darkMode {
  24. color: #ccc;
  25. } else {
  26. color: textColor;
  27. }
  28. }
  29. a:link,
  30. a:visited {
  31. color: linkColor;
  32. }
  33.  
  34. div.user-box table.main td.left div.title span.title a:link, div.user-box table.main td.left div.title span.title a:visited,
  35. div.user-box table.main td.middle div.header span.title,
  36. .box-title a, .box-title a:visited, .box-subtitle,
  37. div.list_index div.body h2 a {
  38. if darkMode {
  39. color: #ccc;
  40. } else {
  41. color: textColor;
  42. }
  43. }
  44. div.global-menu a,
  45. .list-color-number-11,
  46. div.global-menu a:visited,
  47. .backup-button,
  48. div.list_index div.body div.list .date,
  49. div.list_index div.header div.create a,
  50. div.list_index div.header div.view_select a {
  51. if darkMode {
  52. color: #bbb;
  53. } else {
  54. color: textColor2;
  55. }
  56. }
  57.  
  58. if broaderLists {
  59. body.list div.center_container {
  60. width: 900px;
  61. max-width: 100%;
  62. }
  63. }
  64.  
  65. if darkMode {
  66. div.user-box,
  67. div.user-box table.menu td.search input,
  68. .listbox-color-11,
  69. .list-title-box-color-11,
  70. .settings-main,
  71. .page-footer,
  72. div.list_index {
  73. background: black;
  74. }
  75. div.user-box table.menu td.selected,
  76. div.list_index div.body div.category a.selected {
  77. background: #112246;
  78. }
  79. }
  80.  
  81. }