Advertisement
Guest User

Untitled

a guest
Aug 12th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. /******* dashboard ********/
  2. .dark-theme {
  3. background-color: #acd1df !important;
  4. color: black !important;
  5. }
  6. .dark-theme h1, .dark-theme h2, .dark-theme h3, .dark-theme h4, .dark-theme h5, .dark-theme h6 {
  7. color: black !important;
  8. }
  9. /* top left block with "your next challenge" */
  10. .dark-theme .is-darkened {
  11. background-color: white !important;
  12. }
  13. .dropdown:hover{
  14. background-color: #bbbaba !important;
  15. }
  16.  
  17. /* under-under top right block with "Earn extra honor and gain..." */
  18. .dark-theme .panel {
  19. color: black !important;
  20. }
  21. .btn.is-dark {
  22. color: black !important;
  23. background-color: white !important;
  24. }
  25. .btn.is-dark:hover {
  26. color: #888 !important;
  27. background-color: #e3e3e3 !important;
  28. }
  29.  
  30. /* under top right block with "Allies..." */
  31. .is-notice-text {
  32. color: #0534bf !important;
  33. }
  34.  
  35. /* other sections */
  36. .ide-editors
  37. {
  38. filter: invert(100%);
  39. }
  40.  
  41. #description, #sidenav {
  42. background-color: white;
  43. color: black;
  44. }
  45.  
  46.  
  47.  
  48. .lang-python {
  49. background-color: white;
  50. color: black;
  51. }
  52.  
  53. pre {
  54. background-color: white;
  55. }
  56. pre .hljs-string {
  57. color: #0f4;
  58. }
  59.  
  60. .five, .coloumns {
  61. background-color: white;
  62. color: black;
  63. }
  64.  
  65. span.mrn, span.has-tip, a.has-tip {
  66. color: black;
  67. }
  68.  
  69.  
  70. /* top right block with kata description */
  71. .personal-trainer .trainer-info {
  72. background-color: #d9d9d9;
  73. color: black;
  74. /*filter: invert(100%);*/
  75. }
  76. .is-white-text {
  77. color: black !important;
  78. }
  79. .markdown {
  80. color: black;
  81. background-color: #ddd;
  82. }
  83.  
  84. /* bottom comment section */
  85. .comment-markdown {
  86. color: black !important;
  87. }
  88. .dark-theme .is-gray-text {
  89. color: #443b3b !important;
  90. }
  91. a {
  92. color: #1a53e5 !important;
  93. }
  94. a:hover {
  95. color: blue !important;
  96. }
  97.  
  98. pre code {
  99. background-color: white !important;
  100. color: black !important;
  101. }
  102. /* inside comment: replying */
  103. .markdown-editor.is-compact .cm-s-cw-dark {
  104. background-color: #cecaca !important;
  105. color: black !important;
  106. }
  107.  
  108. /* left side-panel */
  109. #sidenav li a{
  110. color: black !important;
  111. }
  112. #sidenav li a:hover{
  113. color: #868686 !important;
  114. }
  115.  
  116. /* top right hover block */
  117. #main_header {
  118. background-color: white !important;
  119. }
  120. header.main .menu .menu-body {
  121. background-color: #c3c2c2 !important;
  122. }
  123. #main_header a{
  124. color: black !important;
  125. }
  126. #main_header a:hover{
  127. color: #6c6c6c !important;
  128. }
  129. /****** login *******/
  130. .is-red-text {
  131. color: white !important;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement