Guest User

Untitled

a guest
Mar 18th, 2020
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. /* night-mode-specific colours */
  2. .review-count {
  3. color: #0a0;
  4. }
  5.  
  6. .new-count {
  7. color: #00a;
  8. }
  9.  
  10. .learn-count {
  11. color: #C35617;
  12. }
  13.  
  14. .nightMode .review-count {
  15. color: #5CcC00;
  16. }
  17. .nightMode .new-count {
  18. color: #77ccff;
  19. }
  20. .nightMode .learn-count {
  21. color: #FF935B;
  22. }
  23.  
  24. /* Copyright: Ankitects Pty Ltd and contributors
  25. * License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
  26. a.deck {
  27. color: black;
  28. text-decoration: none;
  29. min-width: 5em;
  30. display: inline-block;
  31. }
  32.  
  33. a.deck:hover {
  34. text-decoration: underline;
  35. }
  36.  
  37. tr.deck td {
  38. border-bottom: 0px solid #e7e7e7;
  39. }
  40.  
  41. tr.top-level-drag-row td {
  42. border-bottom: 1px solid transparent;
  43. }
  44.  
  45. td {
  46. white-space: nowrap;
  47. }
  48.  
  49. tr.drag-hover td {
  50. border-bottom: 1px solid #aaa;
  51. }
  52.  
  53. body.nightMode {
  54. margin: 1em;
  55. -webkit-user-select: none;
  56. background-image: url("background.png");
  57. background-position: center-bottom;
  58. background-size: 100% 100%;
  59. background-color: #3b3687;
  60. background-attachment: fixed;
  61. background-repeat: no-repeat;}
  62.  
  63. .current {
  64. background-color: #e7e7e7;
  65. }
  66.  
  67. .decktd {
  68. min-width: 15em;
  69. }
  70.  
  71. .count {
  72. min-width: 4em;
  73. text-align: right;
  74. }
  75.  
  76. .optscol {
  77. width: 2em;
  78. }
  79.  
  80. .collapse {
  81. color: black;
  82. text-decoration: none;
  83. display: inline-block;
  84. width: 1em;
  85. }
  86.  
  87. .filtered {
  88. color: #00a !important;
  89. }
  90.  
  91. .gears {
  92. width: 1em;
  93. height: 1em;
  94. opacity: 0.5;
  95. padding-top: 0.2em;
  96. }
  97.  
  98. .nightMode a.deck {
  99. color: #eee; text-decoration: none; min-width 8em; display: inline-block;
  100. }
  101. .nightMode tr.deck td {
  102. border-bottom-color: #29292B;
  103. }
  104. .nightMode tr.drag-hover td {
  105. border-bottom-color: #777;}
  106. .nightMode .current {
  107. background-color: #d251db;
  108. }
  109. .nightMode .collapse {
  110. color: white;
  111. }
  112. .nightMode .gears {
  113. filter: invert(180);
  114. }
  115. .nightMode .filtered {
  116. color: #77ccff !important;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment